4 implementations of MaxDecimalExponent
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2569static int IBinaryFloatParseAndFormatInfo<double>.MaxDecimalExponent => 309;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2412static int IBinaryFloatParseAndFormatInfo<Half>.MaxDecimalExponent => 5;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
2133static int IBinaryFloatParseAndFormatInfo<BFloat16>.MaxDecimalExponent => 39;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
2257static int IBinaryFloatParseAndFormatInfo<float>.MaxDecimalExponent => 39;
2 references to MaxDecimalExponent
System.Private.CoreLib (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.DecimalIeee754.cs (1)
3753else if (scale > TFloat.MaxDecimalExponent)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Parsing.cs (1)
1756else if (number.Scale > TFloat.MaxDecimalExponent)