Which of the following statements are correct about exception handling in C#.NET?
try blocks cannot be nested.
In one function, there can be only one try block.
An exception must be caught in the same function in which it is thrown.
All values set up in the exception object are available in the catch block.
While throwing a user-defined exception multiple values can be set in the exception, object.
View Options