Posted on: 1/11/2014 4:02:41 AM | Views : 640

In the given code finally block is not executed for unhandled exception.
            try             {                 throw new AggregateException();             }             catch (IndexOutOfRangeException ex)             {             //code             }             finally             {             //cod ...

Go to the complete details ...