Ejemplo n.º 1
0
 public static void Main()
 {
     IFoo <object> f      = new FooWithBase();
     var           result = f.Method <object> (null);
 }
Ejemplo n.º 2
0
        public static void Main()
        {
            IFoo f = new FooWithBase();

            f.Method();
        }
Ejemplo n.º 3
0
        public static void Main()
        {
            IFoo <object> f = new FooWithBase();

            f.Method(null);
        }
Ejemplo n.º 4
0
        public static void Main()
        {
            IFoo <object, int> f = new FooWithBase <object, int> ();

            f.Method(null, 0);
        }