Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Call() [4/16]

static MethodCallExpression System.Linq.Expressions.Expression< TDelegate >.Call ( Expression< TDelegate >? instance,
MethodInfo method )
inlinestaticinherited

Definition at line 4080 of file Expression.cs.

4081 {
4085 if (instance != null)
4086 {
4087 return new InstanceMethodCallExpression0(method, instance);
4088 }
4089 return new MethodCallExpression0(method);
4090 }
static void RequiresNotNull(object value, string paramName)
static void ValidateArgumentCount(MethodBase method, ExpressionType nodeKind, int count, ParameterInfo[] pis)
static ParameterInfo[] ValidateMethodAndGetParameters(Expression instance, MethodInfo method)

References System.Dynamic.Utils.ContractUtils.RequiresNotNull(), System.Linq.Expressions.Expression< TDelegate >.ValidateArgumentCount(), and System.Linq.Expressions.Expression< TDelegate >.ValidateMethodAndGetParameters().