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

◆ Parameter() [2/2]

static ParameterExpression System.Linq.Expressions.Expression< TDelegate >.Parameter ( Type type,
string? name )
inlinestaticinherited

Definition at line 4670 of file Expression.cs.

4671 {
4673 bool isByRef = type.IsByRef;
4674 if (isByRef)
4675 {
4676 type = type.GetElementType();
4677 }
4678 return ParameterExpression.Make(type, name, isByRef);
4679 }
static void Validate(Type type, bool allowByRef)

References System.Linq.Expressions.ParameterExpression.Make(), System.type, and System.Linq.Expressions.Expression< TDelegate >.Validate().