ProcessPriorityClass.cs 356 B

1234567891011121314151617181920
  1. //
  2. // System.Diagnostics.ProcessPriorityClass.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 ProcessPriorityClass {
  12. AboveNormal=0x08000,
  13. BelowNormal=0x04000,
  14. High=0x00080,
  15. Idle=0x00040,
  16. Normal=0x00020,
  17. RealTime=0x00100,
  18. }
  19. }