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