2003-12-06 Dick Porter <dick@ximian.com>
[mono.git] / mcs / class / corlib / System.Globalization / UnicodeCategory.cs
1 //
2 // System.Globalization.UnicodeCategory.cs
3 //
4 // Author:
5 //   Joe Shaw (joe@ximian.com)
6 //
7 // (C) 2001 Ximian, Inc.  http://www.ximian.com
8 //
9
10 namespace System.Globalization {
11
12         public enum UnicodeCategory {
13                 UppercaseLetter         =  0,
14                 LowercaseLetter         =  1,
15                 TitlecaseLetter         =  2,
16                 ModifierLetter          =  3,
17                 OtherLetter             =  4,
18                 NonSpacingMark          =  5,
19                 SpacingCombiningMark    =  6,
20                 EnclosingMark           =  7,
21                 DecimalDigitNumber      =  8,
22                 LetterNumber            =  9,
23                 OtherNumber             = 10,
24                 SpaceSeparator          = 11,
25                 LineSeparator           = 12,
26                 ParagraphSeparator      = 13,
27                 Control                 = 14,
28                 Format                  = 15,
29                 Surrogate               = 16,
30                 PrivateUse              = 17,
31                 ConnectorPunctuation    = 18,
32                 DashPunctuation         = 19,
33                 OpenPunctuation         = 20,
34                 ClosePunctuation        = 21,
35                 InitialQuotePunctuation = 22,
36                 FinalQuotePunctuation   = 23,
37                 OtherPunctuation        = 24,
38                 MathSymbol              = 25,
39                 CurrencySymbol          = 26,
40                 ModifierSymbol          = 27,
41                 OtherSymbol             = 28,
42                 OtherNotAssigned        = 29,
43         }
44 }