3 references to FromValue
Microsoft.CodeAnalysis.CSharp (3)
Utilities\ValueSetFactory.DecimalTC.cs (3)
42var (low, mid, high, isNegative, scale) = DecimalRep.FromValue(value); 43Debug.Assert(scale == DecimalRep.FromValue(value).Normalize().scale); // assert that the input is normalized 124public static decimal Normalize(decimal value) => DecimalRep.FromValue(value).Normalize().Value;