3 references to Round
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1333public static Half Round(Half x, MidpointRounding mode) => (Half)MathF.Round((float)x, mode);
src\libraries\System.Private.CoreLib\src\System\MathF.cs (1)
440x = Round(x * power10, mode) / power10;
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
684public static float Round(float x, MidpointRounding mode) => MathF.Round(x, mode);