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

◆ VisitExpressions< T >() [2/2]

void System.Linq.Expressions.ExpressionStringBuilder.VisitExpressions< T > ( char open,
ReadOnlyCollection< T > expressions,
char close,
string seperator )
inlineprivate
Type Constraints
T :Expression 

Definition at line 100 of file ExpressionStringBuilder.cs.

100 : Expression
101 {
102 Out(open);
103 if (expressions != null)
104 {
105 bool flag = true;
106 foreach (T expression in expressions)
107 {
108 if (flag)
109 {
110 flag = false;
111 }
112 else
113 {
114 Out(seperator);
115 }
117 }
118 }
119 Out(close);
120 }
virtual ? Expression Visit(Expression? node)

References System.Reflection.Out, and System.Linq.Expressions.ExpressionVisitor.Visit().