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

◆ TryCatch()

static TryExpression System.Linq.Expressions.Expression< TDelegate >.TryCatch ( Expression< TDelegate > body,
params CatchBlock?[] handlers )
inlinestaticinherited

Definition at line 4887 of file Expression.cs.

4888 {
4889 return MakeTry(null, body, null, null, handlers);
4890 }
static TryExpression MakeTry(Type? type, Expression body, Expression? @finally, Expression? fault, IEnumerable< CatchBlock >? handlers)

References System.Linq.Expressions.Expression< TDelegate >.MakeTry().