3 references to FindMethod
System.Core (3)
Microsoft\Scripting\Ast\ListInitExpression.cs (1)
154
MethodInfo addMethod =
FindMethod
(newExpression.Type, "Add", null, new Expression[] { initializerlist[0] }, BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
Microsoft\Scripting\Ast\MethodCallExpression.cs (2)
759
return Expression.Call(instance,
FindMethod
(instance.Type, methodName, typeArguments, arguments, flags), arguments);
780
return Expression.Call(null,
FindMethod
(type, methodName, typeArguments, arguments, flags), arguments);