5 implementations of GetExponentByteCount
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1129
int IFloatingPoint<decimal>.
GetExponentByteCount
() => sizeof(sbyte);
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
699
int IFloatingPoint<double>.
GetExponentByteCount
() => sizeof(short);
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1342
int IFloatingPoint<Half>.
GetExponentByteCount
() => sizeof(sbyte);
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1010
int IFloatingPoint<NFloat>.
GetExponentByteCount
() => sizeof(NativeExponentType);
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
694
int IFloatingPoint<float>.
GetExponentByteCount
() => sizeof(sbyte);
5 references to GetExponentByteCount
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1128
/// <inheritdoc cref="IFloatingPoint{TSelf}.
GetExponentByteCount
()" />
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
698
/// <inheritdoc cref="IFloatingPoint{TSelf}.
GetExponentByteCount
()" />
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1341
/// <inheritdoc cref="IFloatingPoint{TSelf}.
GetExponentByteCount
()" />
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1009
/// <inheritdoc cref="IFloatingPoint{TSelf}.
GetExponentByteCount
()" />
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
693
/// <inheritdoc cref="IFloatingPoint{TSelf}.
GetExponentByteCount
()" />