ThreadPriorityLevel.cs 342 B

123456789101112131415161718192021
  1. //
  2. // System.Diagnostics.ThreadPriorityLevel.cs
  3. //
  4. // Authors:
  5. // Dick Porter ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc. http://www.ximian.com
  8. //
  9. namespace System.Diagnostics {
  10. [Serializable]
  11. public enum ThreadPriorityLevel {
  12. AboveNormal=1,
  13. BelowNormal=-1,
  14. Highest=2,
  15. Idle=-15,
  16. Lowest=-2,
  17. Normal=0,
  18. TimeCritical=15,
  19. }
  20. }