예제 #1
0
        static void Main(string[] args)
        {
            //Console.WriteLine("Hello World!");
            Arith a1 = new Arith();

            a1.Add(28, 22);
            int substract = a1.Sub(20, 10);

            Console.WriteLine(" this is return value" + substract);


            Print p = new Print();

            p.Just();
            p.Add(1, 2);
        }