6 references to ParseFloat
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Double.cs (2)
412return Number.ParseFloat<char, double>(s, style, NumberFormatInfo.GetInstance(provider)); 2271return Number.ParseFloat<byte, double>(utf8Text, style, NumberFormatInfo.GetInstance(provider));
src\libraries\System.Private.CoreLib\src\System\Half.cs (2)
358return Number.ParseFloat<char, Half>(s, style, NumberFormatInfo.GetInstance(provider)); 2319return Number.ParseFloat<byte, Half>(utf8Text, style, NumberFormatInfo.GetInstance(provider));
src\libraries\System.Private.CoreLib\src\System\Single.cs (2)
407return Number.ParseFloat<char, float>(s, style, NumberFormatInfo.GetInstance(provider)); 2187return Number.ParseFloat<byte, float>(utf8Text, style, NumberFormatInfo.GetInstance(provider));