8 references to ParseFloat
System.Private.CoreLib (8)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (2)
416return Number.ParseFloat<char, double>(s, style, NumberFormatInfo.GetInstance(provider)); 2537return Number.ParseFloat<byte, double>(utf8Text, style, NumberFormatInfo.GetInstance(provider));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (2)
379return Number.ParseFloat<char, Half>(s, style, NumberFormatInfo.GetInstance(provider)); 2380return Number.ParseFloat<byte, Half>(utf8Text, style, NumberFormatInfo.GetInstance(provider));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (2)
275return Number.ParseFloat<char, BFloat16>(s, style, NumberFormatInfo.GetInstance(provider)); 2101return Number.ParseFloat<byte, BFloat16>(utf8Text, style, NumberFormatInfo.GetInstance(provider));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (2)
409return Number.ParseFloat<char, float>(s, style, NumberFormatInfo.GetInstance(provider)); 2225return Number.ParseFloat<byte, float>(utf8Text, style, NumberFormatInfo.GetInstance(provider));