11 references to Parse
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\XmlConvert.cs (1)
1178
double dVal = Double.
Parse
(s, NumberStyles.AllowLeadingSign | NumberStyles.AllowDecimalPoint | NumberStyles.AllowExponent | NumberStyles.AllowLeadingWhite | NumberStyles.AllowTrailingWhite, NumberFormatInfo.InvariantInfo);
Microsoft.AspNetCore.Mvc.Core (1)
ModelBinding\Binders\DoubleModelBinder.cs (1)
69
model = double.
Parse
(value, _supportedStyles, valueProviderResult.Culture);
Microsoft.VisualBasic.Core (3)
Microsoft\VisualBasic\CompilerServices\Conversions.vb (3)
1910
Result = Double.
Parse
(Value, flags, NormalizedNumberFormat)
1955
Return Double.
Parse
(Value, flags, NormalizedNumberFormat)
1958
Return Double.
Parse
(Value, flags, NumberFormat)
System.ComponentModel.TypeConverter (1)
System\ComponentModel\DoubleConverter.cs (1)
37
return double.
Parse
(value, NumberStyles.Float, formatInfo);
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Double.cs (3)
386
public static double Parse(string s) =>
Parse
(s, NumberStyles.Float | NumberStyles.AllowThousands, provider: null);
388
public static double Parse(string s, NumberStyles style) =>
Parse
(s, style, provider: null);
390
public static double Parse(string s, IFormatProvider? provider) =>
Parse
(s, NumberStyles.Float | NumberStyles.AllowThousands, provider);
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
670
var result = NativeType.
Parse
(s, style, provider);
UIAutomationClientSideProviders (1)
MS\Internal\AutomationProxies\WinFormsSpinner.cs (1)
52
double.
Parse
(text, NumberStyles.Any, CultureInfo.InvariantCulture);