how can we manage C# finally block process
Can it is possible,I have a doubt in a mind i want in exception handling finally block never excuted ,whatever exception come or not in both condition but it is necessary finally block mustv be defind in your code.

VulpesPosted Jul 6, 2012, 3:57 AM
try/catch compiles and works fine with or without a finally block but, if there is a finally block, then it will be executed whether there's an exception or not except if the exception is one of the 'fatal' ones which Jignesh has enumerated.
Jignesh TrivediPosted Jul 6, 2012, 12:07 AM
Finnaly block not is call if and only if exception type is StackOverflowException or ExecutingEngineException.
can you please share the in which finally block is not called.
thx.