finally block in exception handling
I have read that we can keep finally block after catch block and that will be always executed whether exception is raised or not.
I have also read that no execution takes place after processing finally block, is it true?
I mean if I write Console.Writeline("hi") after finally block, will it be executed?
denkaiPosted Dec 7, 2004, 9:38 AM