public object EmptyEnumerableOf(Type collectionType)
 {
     return(_genericMethodProxyCalls.ResultOfGenericVersionOfMethod(
                this,
                collectionType,
                MethodBase.GetCurrentMethod().Name));
 }
Esempio n. 2
0
 public object Dictionary(Type keyType, Type valueType, IInstanceGenerator generator)
 {
     return(_genericMethodProxyCalls.ResultOfGenericVersionOfMethod(
                this, keyType, valueType, MethodBase.GetCurrentMethod().Name, new object[] { generator }));
 }
Esempio n. 3
0
 public object ResultOfGenericVersionOfMethod <T>(T instance, Type keyType, Type valueType, string name)
 {
     return(_proxyCalls.ResultOfGenericVersionOfMethod(instance, keyType, valueType, name));
 }