I am almost positive that the answer is YES. If I use a Try Finally block but do not use a Catch block then any exceptions WILL bubble. Correct?
Any thoughts on the practice in general?
Seth
Yes, it absolutely will. Assuming your finally
block doesn't throw an exception, of course, in which case that will effectively "replace" the one that was originally thrown.