Questions related to the finally block in try-catch construct.
Edit: I have looked at the answers code: NONE of them do what I want (I've checked). It would seem …
c# exception-handling finallypublic void threadMethod() { try { // do something } catch (ThreadInterruptedException e) { Console.WriteLine("[Net]", role, "Thread interrupted."); n.CloseConnection(); } finally { if (isAutenticated == …
.net exception-handling finally