I am pretty new to programming in VB.Net, but I have been programming in other languages for a couple of decades now, including VB5/6 and C++.
When I am using a Try - Catch block to handle exceptions, what is the point of a Finally section? Wouldn't it be just the same as putting code after the End Try? So why use a Finally section because it looks like it just gets executed after everything else in the block, which is the same behaviour as code after the Try - Catch block.