13 references to AllowExponent
mscorlib (4)
system\globalization\numberformatinfo.cs (1)
815
| NumberStyles.AllowThousands | NumberStyles.
AllowExponent
system\globalization\numberstyles.cs (2)
60
AllowDecimalPoint |
AllowExponent
,
66
AllowParentheses | AllowDecimalPoint | AllowThousands | AllowCurrencySymbol |
AllowExponent
,
system\number.cs (1)
867
if ((ch == 'E' || ch == 'e') && ((options & NumberStyles.
AllowExponent
) != 0)) {
System.Numerics (1)
System\Numerics\BigNumber.cs (1)
289
| NumberStyles.AllowThousands | NumberStyles.
AllowExponent
System.Web (1)
OutputCacheModule.cs (1)
446
if (Double.TryParse(s, NumberStyles.Float & ~NumberStyles.AllowLeadingSign & ~NumberStyles.
AllowExponent
, CultureInfo.InvariantCulture, out d)) {
System.Workflow.Activities (3)
Rules\Parser\Scanner.cs (3)
598
tokenValue = float.Parse(numberString, NumberStyles.AllowDecimalPoint | NumberStyles.
AllowExponent
, CultureInfo.InvariantCulture);
611
tokenValue = double.Parse(numberString, NumberStyles.AllowDecimalPoint | NumberStyles.
AllowExponent
, CultureInfo.InvariantCulture);
624
tokenValue = decimal.Parse(numberString, NumberStyles.AllowDecimalPoint | NumberStyles.
AllowExponent
, CultureInfo.InvariantCulture);
System.Xml (4)
System\Xml\XmlConvert.cs (4)
1039
float f = Single.Parse(s, NumberStyles.AllowLeadingSign|NumberStyles.AllowDecimalPoint|NumberStyles.
AllowExponent
, NumberFormatInfo.InvariantInfo);
1057
else if (!Single.TryParse(s, NumberStyles.AllowLeadingSign|NumberStyles.AllowDecimalPoint|NumberStyles.
AllowExponent
, NumberFormatInfo.InvariantInfo, out result)) {
1075
double dVal = Double.Parse(s, NumberStyles.AllowLeadingSign|NumberStyles.AllowDecimalPoint|NumberStyles.
AllowExponent
|NumberStyles.AllowLeadingWhite|NumberStyles.AllowTrailingWhite, NumberFormatInfo.InvariantInfo);
1093
else if (!Double.TryParse(s, NumberStyles.AllowLeadingSign|NumberStyles.AllowDecimalPoint|NumberStyles.
AllowExponent
, NumberFormatInfo.InvariantInfo, out result)) {