System.SingleExtensions.RoundToInt C# (CSharp) Method

RoundToInt() public static method

(五舍六入)将值舍入到最接近的整数或指定的小数位数
public static RoundToInt ( float f ) : int
f float
return int
        public static int RoundToInt(this float f) => (int)MathF.Round(f);

Same methods

SingleExtensions::RoundToInt ( float f, MidpointRounding mode ) : int