Patcher.Rules.Compiled.Helpers.Math.Round C# (CSharp) Method

Round() public static method

Rounds the specified floating point value to the nearest integer value.
public static Round ( float a ) : int
a float Floating point value to round.
return int
        public static int Round(float a)
        {
            return (int)System.Math.Round(a);
        }