Exemplo n.º 1
0
 static public bool CanEffectiveParametersHold <P1, P2>(this MethodBase item)
 {
     return(item.CanEffectiveParametersHold(typeof(P1), typeof(P2)));
 }
Exemplo n.º 2
0
 static public bool CanEffectiveParametersHold(this MethodBase item, params Type[] parameter_types)
 {
     return(item.CanEffectiveParametersHold((IEnumerable <Type>)parameter_types));
 }