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