mscorlib(4.0.0.0) API with additions
NumberStyles.cs
2 
3 namespace System.Globalization
4 {
7  [Flags]
8  [ComVisible(true)]
9  [__DynamicallyInvokable]
10  public enum NumberStyles
11  {
13  [__DynamicallyInvokable]
14  None = 0x0,
16  [__DynamicallyInvokable]
17  AllowLeadingWhite = 0x1,
19  [__DynamicallyInvokable]
20  AllowTrailingWhite = 0x2,
22  [__DynamicallyInvokable]
23  AllowLeadingSign = 0x4,
25  [__DynamicallyInvokable]
26  AllowTrailingSign = 0x8,
28  [__DynamicallyInvokable]
29  AllowParentheses = 0x10,
31  [__DynamicallyInvokable]
32  AllowDecimalPoint = 0x20,
34  [__DynamicallyInvokable]
35  AllowThousands = 0x40,
37  [__DynamicallyInvokable]
38  AllowExponent = 0x80,
40  [__DynamicallyInvokable]
41  AllowCurrencySymbol = 0x100,
43  [__DynamicallyInvokable]
44  AllowHexSpecifier = 0x200,
46  [__DynamicallyInvokable]
47  Integer = 0x7,
49  [__DynamicallyInvokable]
50  HexNumber = 0x203,
52  [__DynamicallyInvokable]
53  Number = 0x6F,
55  [__DynamicallyInvokable]
56  Float = 0xA7,
58  [__DynamicallyInvokable]
59  Currency = 0x17F,
61  [__DynamicallyInvokable]
62  Any = 0x1FF
63  }
64 }
Indicates that the numeric string can have group separators, such as symbols that separate hundreds f...
Definition: __Canon.cs:3
Indicates that the F:System.Globalization.NumberStyles.AllowLeadingWhite, F:System....
NumberStyles
Determines the styles permitted in numeric string arguments that are passed to the Parse and TryParse...
Definition: NumberStyles.cs:10
Leading white-space characters must be ignored during parsing, except if they occur in the T:System....
Trailing white-space characters must be ignored during parsing, except if they occur in the T:System....
Indicates that the numeric string can be in exponential notation. The F:System.Globalization....
Indicates that the F:System.Globalization.NumberStyles.AllowLeadingWhite, F:System....
Indicates that the numeric string can contain a currency symbol. Valid currency symbols are determine...
Specifies that the class can be serialized.
Indicates that the numeric string represents a hexadecimal value. Valid hexadecimal values include th...
Indicates that the numeric string can have one pair of parentheses enclosing the number....
Indicates that all styles except F:System.Globalization.NumberStyles.AllowExponent and F:System....
Indicates that the numeric string can have a trailing sign. Valid trailing sign characters are determ...
Indicates that the numeric string can have a decimal point. If the T:System.Globalization....
Indicates that the numeric string can have a leading sign. Valid leading sign characters are determin...