SLExt.cs 213 B

12345678910111213141516
  1. #if _SILVERLIGHT
  2. using System.Threading;
  3. namespace Amib.Threading
  4. {
  5. public enum ThreadPriority
  6. {
  7. Lowest,
  8. BelowNormal,
  9. Normal,
  10. AboveNormal,
  11. Highest,
  12. }
  13. }
  14. #endif