4 references to Round
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (4)
678public static decimal Round(decimal d) => Round(ref d, 0, MidpointRounding.ToEven); 679public static decimal Round(decimal d, int decimals) => Round(ref d, decimals, MidpointRounding.ToEven); 680public static decimal Round(decimal d, MidpointRounding mode) => Round(ref d, 0, mode); 681public static decimal Round(decimal d, int decimals, MidpointRounding mode) => Round(ref d, decimals, mode);