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