public static void Main() { MathLib mathobj = new MathLib(); Console.WriteLine(mathobj.Add(3, 5)); Console.ReadLine(); }
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); }
public static void Main() { MathLib mathObj = new MathLib(); Console.WriteLine(mathObj.Add(7, 8)); }