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

◆ Make() [4/5]

static DynamicExpression System.Linq.Expressions.DynamicExpression.Make ( Type returnType,
Type delegateType,
CallSiteBinder binder,
Expression arg0,
Expression arg1,
Expression arg2,
Expression arg3 )
inlinestaticpackageinherited

Definition at line 82 of file DynamicExpression.cs.

83 {
84 if (returnType == typeof(object))
85 {
86 return new DynamicExpression4(delegateType, binder, arg0, arg1, arg2, arg3);
87 }
88 return new TypedDynamicExpression4(returnType, delegateType, binder, arg0, arg1, arg2, arg3);
89 }