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

◆ IsByRef()

static bool System.Linq.Expressions.Compiler.DelegateHelpers.IsByRef ( DynamicMetaObject mo)
inlinestaticprivate

Definition at line 84 of file DelegateHelpers.cs.

85 {
86 if (mo.Expression is ParameterExpression parameterExpression)
87 {
88 return parameterExpression.IsByRef;
89 }
90 return false;
91 }