3 implementations of Zero
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
1815static UInt128 IDecimalIeee754ParseAndFormatInfo<Decimal128, UInt128>.Zero => ZeroValue;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
1783static uint IDecimalIeee754ParseAndFormatInfo<Decimal32, uint>.Zero => ZeroValue;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
1777static ulong IDecimalIeee754ParseAndFormatInfo<Decimal64, ulong>.Zero => ZeroValue;
6 references to Zero
System.Private.CoreLib (6)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.DecimalIeee754.cs (1)
25return TDecimal.Zero.GetHashCode();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.DecimalIeee754.Transcendental.cs (3)
36return TDecimal.IsNegative(x) ? TDecimal.Zero : TDecimal.PositiveInfinity; 70return TDecimal.IsNegative(x) ? TDecimal.Zero : TDecimal.PositiveInfinity; 104return TDecimal.IsNegative(x) ? TDecimal.Zero : TDecimal.PositiveInfinity;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Parsing.cs (2)
1055result = TDecimal.Construct(TDecimal.Zero); 1086result = TDecimal.Construct(TDecimal.Zero);