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