3 overrides of DecimalValue
Microsoft.CodeAnalysis (3)
ConstantValueSpecialized.cs (3)
251public override decimal DecimalValue 401public override decimal DecimalValue 579public override decimal DecimalValue
7 references to DecimalValue
Microsoft.CodeAnalysis (7)
ConstantValue.cs (3)
535case ConstantValueTypeDiscriminator.Decimal: return Boxes.Box(DecimalValue); 592return DecimalValue < 0; 831ConstantValueTypeDiscriminator.Decimal => DecimalValue.ToString(provider),
ConstantValueSpecialized.cs (3)
266return base.Equals(other) && _value == other.DecimalValue; 466return this.Discriminator == other.Discriminator && other.DecimalValue == 0m; 682return this.Discriminator == other.Discriminator && other.DecimalValue == 1m;
CryptographicHashProvider.cs (1)
257int[] bits = decimal.GetBits(constant.DecimalValue);