| AllowLeadingWhite | | 1 | | Leading white space characters aer ignored
|
| AllowTrailingWhite | | 2 | | Trailing white space characters aer ignored
|
| AllowLeadingSign | | 4 | | Leading - or + sign is allowed
|
| AllowTrailingSign | | 8 | | Trailing - or + sign is allowed (as defined by NumberFormatInfo)
|
| AllowParentheses | | 16 | | Allow the number to be enclosed by brackets
|
| AllowDecimalPoint | | 32 | | Allow the number to contain a decmal point (as defined by NumberFormatInfo)
|
| AllowThousands | | 64 | | Allow thousands separators (as defined by NumberFormatInfo)
|
| AllowExponent | | 128 | | Allow scientific exponent format
|
| AllowCurrencySymbol | | 256 | | The string is parsed as a currency value if it contains a currency symbol (as defined by NumberFormatInfo)
|
| AllowHexSpecifier | | 512 | | The number is treated as a hexadecimal number. It must not be prefixed by 0x
|
| Number | | 111 | | Combination used for general number parsing
|
| Any | | 511 | | All but the hexadecimal style
|
| HexNumber | | 515 | | As Number, but for hexadecimal numbers |