Bickle.Examples.ExampleSpec.GetSquareRoot C# (CSharp) Method

GetSquareRoot() private method

private GetSquareRoot ( int input ) : int
input int
return int
        private int GetSquareRoot(int input)
        {
            return (int)Math.Sqrt(input);
        }