Advertisement
Fhernd

ThreadPriority.cs

Jul 10th, 2014
1,499
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.33 KB | None | 0 0
  1. public enum ThreadPriority
  2. {
  3.     /*=========================================================================
  4.     ** Constants for thread priorities.
  5.     =========================================================================*/
  6.     Lowest = 0,
  7.     BelowNormal = 1,
  8.     Normal = 2,
  9.     AboveNormal = 3,
  10.     Highest = 4
  11.    
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement