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