4 references to Round
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
692public static double Round(double x, int digits, MidpointRounding mode) => Math.Round(x, digits, mode);
src\libraries\System.Private.CoreLib\src\System\Math.cs (1)
1354return Round(value, digits, MidpointRounding.ToEven);
xunit.assert (2)
EqualityAsserts.cs (2)
148 var expectedRounded = Math.Round(expected, precision, rounding); 149 var actualRounded = Math.Round(actual, precision, rounding);