interface AnInterface { void anInterfaceMethod(); } class Test : AnInterface { public void anInterfaceMethod() { } static public void Main() { AnInterface anInterface = new Test(); for(int i=0; i < 10; i++) anInterface.anInterfaceMethod(); // breakpoint } }