System.SingleExtensions.Round2ToInt C# (CSharp) Method

Round2ToInt() public static method

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