3 references to PositiveInfinityValue
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (3)
77
public static Decimal32 PositiveInfinity => new Decimal32(
PositiveInfinityValue
);
1152
public static bool IsPositiveInfinity(Decimal32 value) => (value._value & (SignMask | NaNMask)) ==
PositiveInfinityValue
;
1779
static uint IDecimalIeee754ParseAndFormatInfo<Decimal32, uint>.PositiveInfinity =>
PositiveInfinityValue
;