Table of Contents

Enum ThreadPriority

Namespace
System.Threading
Assembly
mscorlib.dll

Specifies the scheduling priority of a Thread.

public enum ThreadPriority

Fields

AboveNormal = 3

The Thread can be scheduled after threads with Highest priority and before those with Normal priority.

BelowNormal = 1

The Thread can be scheduled after threads with Normal priority and before those with Lowest priority.

Highest = 4

The Thread can be scheduled before threads with any other priority.

Lowest = 0

The Thread can be scheduled after threads with any other priority.

Normal = 2

The Thread can be scheduled after threads with AboveNormal priority and before those with BelowNormal priority. Threads have Normal priority by default.