예제 #1
0
파일: Program.cs 프로젝트: 3141592/vs
        static void Main(string[] args)
        {
            // library class instance
              MathLib obj = new MathLib();

              // method calls
              obj.calculateSum(2, 5);
              obj.calculateSqrt(25);
        }