PowerArgs.Cli.Friendlies.Round C# (CSharp) Method

Round() private static method

private static Round ( this number ) : int
number this
return int
        private static int Round(this double number)
        {
            return (int)Math.Round(number);
        }