1 write to isNegative
Microsoft.CodeAnalysis.CSharp (1)
Utilities\ValueSetFactory.DecimalTC.cs (1)
144this.isNegative = isNegative;
3 references to isNegative
Microsoft.CodeAnalysis.CSharp (3)
Utilities\ValueSetFactory.DecimalTC.cs (3)
148public decimal Value => new decimal(lo: (int)low, mid: (int)mid, hi: (int)high, isNegative: isNegative, scale: scale); 190(low, mid, high, isNegative, scale) = (this.low, this.mid, this.high, this.isNegative, this.scale); 192public override string ToString() => $"Decimal({(isNegative ? "-" : "+")}, 0x{high:08X} 0x{mid:08X} 0x{low:08X} *10^-{scale})";