OK, I'd like to know the difference between the following two blocks of code:
Block A
Block B
These seem to be equivalent to me, but I must be missing something. In both cases the "Do other things" code executes after errors are caught. I just can't see the point of the Finally block!
Block A
Code:
Try Something Catch Process Errors End Try Do other things
Code:
Try Something Catch Process Errors Finally Do other things End Try
Comment