static void Main(string[] args) { Program p = new Program(); p.Sub(20, 10); p.Add(10, 20); IInterface2 i = p; i.Add(10, 10); i.Sub(20, 10); }