Exemplo n.º 1
0
 static public IEnumerable <ILValue> GetILExpandedParams(this ILValue item, params Type[] types)
 {
     return(item.GetILExpandedParams((IEnumerable <Type>)types));
 }
Exemplo n.º 2
0
 static public IEnumerable <ILValue> GetILExpandedParams(this ILValue item, MethodBase method)
 {
     return(item.GetILExpandedParams(method.GetEffectiveParameterTypes()));
 }
Exemplo n.º 3
0
 static public IEnumerable <ILValue> GetILExpandedParams(this ILValue item, IEnumerable <Type> types)
 {
     return(item.GetILExpandedParams(0, types));
 }