How does the try catch finally block work?
Yes, the finally block gets run whether there is an exception or not. Try [ tryStatements ] [ Exit Try ] [ Catch [ exception [ As type ] ] [ When expression ] [ catchStatements ] [ Exit Try ] ] [ Catch … ] [ Finally [ finallyStatements ] ] –RUN ALWAYS End …