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