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

◆ TryCatchFinally()

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

Definition at line 4892 of file Expression.cs.

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

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