public static void testGenericInterfaceWithGenericMethod()
 {
     IGenericInterfaceCalling <int> iface = new GenericSimpleIdentity <int>();
     var a = iface.zip(3, 4f);
 }
 public static void testGenericInterfaceWithGenericMethod()
 {
     IGenericInterfaceCalling<int> iface = new GenericSimpleIdentity<int>();
     var a = iface.zip(3, 4f);
 }
    public static void testGenericInterfaceSimple()
    {
        IGenericInterfaceCalling <int> iface = new GenericSimpleIdentity <int>();

        iface.identity(3);
    }
 public static void testGenericInterfaceSimple()
 {
     IGenericInterfaceCalling<int> iface = new GenericSimpleIdentity<int>();
     iface.identity(3);
 }