Example #1
0
        public static object Test_OnlyGenericMethod_2()
        {
            var obj = 1;

            return(GenericMethodInsideGenericType <object, object, int> .OnlyGenericMethod <object>(obj));
        }
Example #2
0
 public static SimpleStruct Test_OnlyGenericMethod_1()
 {
     return(GenericMethodInsideGenericType <object, object, int> .OnlyGenericMethod <SimpleStruct>(new SimpleStruct()));
 }