A basic question.I need to exit a function without throwing any exceptions. How do I do that in C#?
Thanks, Priyanka
|
|
It's just as simple as:
Nevertheless this would be a one minute search in any programming tutorial. |
|||||||||
|
|
Instead of using "return;" I've always suggested a right logic. In other words, you don't need to leave execution from some method: just use a conditional statement so if some boolean isn't true, that would mean some code mustn't be executed. But I assume this is my opinion, and others prefer returning the control to the caller. Additionally, you'd like to know exception-based flow control is an anti-pattern. |
|||
|
|
|
May be to Keep the catch block empty. Please explain your question |
|||
|
you can put you code in a try catch block and do whatever you want to do in the finally block without worrying about the exception.
|
||||
|
|