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

◆ VisitCatchBlock()

override CatchBlock System.Linq.Expressions.ExpressionStringBuilder.VisitCatchBlock ( CatchBlock node)
inlineprotectedvirtual

Reimplemented from System.Linq.Expressions.ExpressionVisitor.

Definition at line 741 of file ExpressionStringBuilder.cs.

742 {
743 Out("catch (");
744 Out(node.Test.Name);
745 if (!string.IsNullOrEmpty(node.Variable?.Name))
746 {
747 Out(' ');
748 Out(node.Variable.Name);
749 }
750 Out(") { ... }");
751 return node;
752 }

References System.Reflection.Out.