Esempio n. 1
0
 public static void Main()
 {
     MathLib mathObj = new MathLib();
      Console.WriteLine(mathObj.Add(7,8));
      Console.WriteLine("{0} plus {1} equals {2}", 2, 4, 2+4);
 }
Esempio n. 2
0
        public static void Main()
        {
            MathLib mathObj = new MathLib();

            Console.WriteLine(mathObj.Add(7, 8));
        }