using System;
using System.Runtime.InteropServices;
namespace System.Threading
{
/// Specifies the scheduling priority of a .
/// 1
// Token: 0x02000622 RID: 1570
[ComVisible(true)]
[Serializable]
public enum ThreadPriority
{
/// The can be scheduled after threads with any other priority.
// Token: 0x04001743 RID: 5955
Lowest,
/// The can be scheduled after threads with Normal priority and before those with Lowest priority.
// Token: 0x04001744 RID: 5956
BelowNormal,
/// The can be scheduled after threads with AboveNormal priority and before those with BelowNormal priority. Threads have Normal priority by default.
// Token: 0x04001745 RID: 5957
Normal,
/// The can be scheduled after threads with Highest priority and before those with Normal priority.
// Token: 0x04001746 RID: 5958
AboveNormal,
/// The can be scheduled before threads with any other priority.
// Token: 0x04001747 RID: 5959
Highest
}
}