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

◆ Make() [1/5]

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

Definition at line 55 of file DynamicExpression.cs.

56 {
57 if (returnType == typeof(object))
58 {
59 return new DynamicExpression1(delegateType, binder, arg0);
60 }
61 return new TypedDynamicExpression1(returnType, delegateType, binder, arg0);
62 }