System.Globalization.NumberStyles
namespace System.Globalization
{
public enum NumberStyles
{
AllowCurrencySymbol = 256,
AllowDecimalPoint = 32,
AllowExponent = 128,
AllowHexSpecifier = 512,
AllowLeadingSign = 4,
AllowLeadingWhite = 1,
AllowParentheses = 16,
AllowThousands = 64,
AllowTrailingSign = 8,
AllowTrailingWhite = 2,
Any = 511,
Currency = 383,
Float = 167,
HexNumber = 515,
Integer = 7,
None = 0,
Number = 111
}
}