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