17 lines
232 B
C#
17 lines
232 B
C#
|
#if _SILVERLIGHT
|
|||
|
|
|||
|
using System.Threading;
|
|||
|
|
|||
|
namespace Amib.Threading
|
|||
|
{
|
|||
|
public enum ThreadPriority
|
|||
|
{
|
|||
|
Lowest,
|
|||
|
BelowNormal,
|
|||
|
Normal,
|
|||
|
AboveNormal,
|
|||
|
Highest,
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|