System.SingleExtensions.Round2ToInt C# (CSharp) Méthode

Round2ToInt() public static méthode

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