| 123456789101112131415161718192021 |
- //
- // System.Diagnostics.ThreadPriorityLevel.cs
- //
- // Authors:
- // Dick Porter ([email protected])
- //
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- //
- namespace System.Diagnostics {
- [Serializable]
- public enum ThreadPriorityLevel {
- AboveNormal=1,
- BelowNormal=-1,
- Highest=2,
- Idle=-15,
- Lowest=-2,
- Normal=0,
- TimeCritical=15,
- }
- }
|