static void Main(string[] args) { MyMath m = new MyMath(); m.Add(2, 5); IMath im = m; im.Print(); IYourMath y = m; y.Print(); }
static void Main(string[] args) { MyMath math = new MyMath(); Console.WriteLine(math.Add(2, 3)); math.Print(); IMath m = math; m.Print(); IYourMath y = math; y.Print(); }