The priority of this thread. This setting is heavily dependent on the underlying implementation and thus is mostly used as a hint rather than directive.
| Type | Name | Value |
|---|---|---|
| constant | LOW | 0 |
| constant | NORMAL | 1 |
| constant | HIGH | 2 |
public const ThreadPriority LOW = 0The thread has lower priority.
public const ThreadPriority NORMAL = 1The thread has normal priority. This is the default setting for a thread.
public const ThreadPriority HIGH = 2The thread has high priority.