5 references to Parse
Microsoft.AspNetCore.Mvc.Core (1)
Formatters\MediaType.cs (1)
280quality = double.Parse(
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Double.cs (2)
398return Parse(s.AsSpan(), style, provider); 1783public static double Parse(ReadOnlySpan<char> s, IFormatProvider? provider) => Parse(s, NumberStyles.Float | NumberStyles.AllowThousands, provider);
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
687var result = NativeType.Parse(s, style, provider);
System.Private.Xml (1)
System\Xml\XmlConvert.cs (1)
1013double dVal = double.Parse(value, NumberStyles.AllowLeadingSign | NumberStyles.AllowDecimalPoint | NumberStyles.AllowExponent | NumberStyles.AllowLeadingWhite | NumberStyles.AllowTrailingWhite, NumberFormatInfo.InvariantInfo);