Bickle.Examples.ExampleSpec.GetSquareRoot C# (CSharp) 메소드

GetSquareRoot() 개인적인 메소드

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