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

◆ Update() [1/2]

Definition at line 5508 of file Expression.cs.

5509 {
5510 if (body == base.Body)
5511 {
5513 if (parameters == null)
5514 {
5515 collection = null;
5516 }
5517 else
5518 {
5520 if (collection == null)
5521 {
5522 parameters = (collection = parameters.ToReadOnly());
5523 }
5524 }
5526 {
5527 return this;
5528 }
5529 }
5530 return Expression.Lambda<TDelegate>(body, base.Name, base.TailCall, parameters);
5531 }
virtual bool SameParameters(ICollection< ParameterExpression > parameters)

References System.collection, System.Linq.Expressions.Expression< TDelegate >.Lambda(), and System.Linq.Expressions.Expression< TDelegate >.SameParameters().