BelhardTraining.PointDemo.Point2D.Square C# (CSharp) Method

Square() protected static method

protected static Square ( double num ) : double
num double
return double
        protected static double Square(double num)
        {
            return num*num;
        }