Tue Sep 10 12:12:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
[mono.git] / mcs / class / corlib / System.Threading / ThreadPriority.cs
1 // ThreadPriority.cs
2 //
3 // This code was automatically generated from
4 // ECMA CLI XML Library Specification.
5 // Generator: libgen.xsl [1.0; (C) Sergey Chaban (serge@wildwestsoftware.com)]
6 // Created: Wed, 5 Sep 2001 06:30:24 UTC
7 // Source file: AllTypes.xml
8 // URL: http://msdn.microsoft.com/net/ecma/AllTypes.xml
9 //
10 // (C) 2001 Ximian, Inc.  http://www.ximian.com
11
12
13 namespace System.Threading {
14
15
16         /// <summary>
17         /// </summary>
18         public enum ThreadPriority {
19
20                 /// <summary>
21                 /// </summary>
22                 Lowest = 0,
23
24                 /// <summary>
25                 /// </summary>
26                 BelowNormal = 1,
27
28                 /// <summary>
29                 /// </summary>
30                 Normal = 2,
31
32                 /// <summary>
33                 /// </summary>
34                 AboveNormal = 3,
35
36                 /// <summary>
37                 /// </summary>
38                 Highest = 4,
39         } // ThreadPriority
40
41 } // System.Threading