Esempio n. 1
0
        public void methodA()
        {
            ISomeInterface me = (ISomeInterface)this;

            Console.WriteLine("Calling methodB from inside methodA");
            me.methodB();
        }