1 write to scale
Microsoft.CodeAnalysis.CSharp (1)
Utilities\ValueSetFactory.DecimalTC.cs (1)
143this.scale = scale;
5 references to scale
Microsoft.CodeAnalysis.CSharp (5)
Utilities\ValueSetFactory.DecimalTC.cs (5)
43Debug.Assert(scale == DecimalRep.FromValue(value).Normalize().scale); // assert that the input is normalized 146public decimal Value => new decimal(lo: (int)low, mid: (int)mid, hi: (int)high, isNegative: isNegative, scale: scale); 151if (this.scale == maxScale) 188(low, mid, high, isNegative, scale) = (this.low, this.mid, this.high, this.isNegative, this.scale); 190public override string ToString() => $"Decimal({(isNegative ? "-" : "+")}, 0x{high:08X} 0x{mid:08X} 0x{low:08X} *10^-{scale})";