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

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

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

            f.Method(null, 0);
        }