Example #1
0
        public new void TestImplements(PublicTest pt)
        {
            Console.WriteLine("oh dear, testing the thing now");
            MixinInterface itf = (MixinInterface)pt;

            Console.WriteLine(itf.CoolThings());
        }
Example #2
0
 public static bool TestingThisToo(PublicTest pt)
 {
     return(pt.TestingThisToo());
     //return true;
 }
Example #3
0
 public void TestImplements(PublicTest pt)
 {
     System.Console.WriteLine("Oops, the overwrite for TestImplements failed?");
 }