Ejemplo n.º 1
0
        public static void Entry()
        {
            new group9.Sub1();

            var cls = new group9.Sub5();

            group9.Sub4 s4 = cls;
            s4.Foo(123);
        }
Ejemplo n.º 2
0
        public static void Entry()
        {
            group9.BaseCls b = new group9.Sub1();

            var cls = new group9.Sub5();

            b = cls;
            b.Foo(123);
            b.Bla(456);
        }