How is the exception handling done in C#?
In C# there is a “try…catch & finally” block to handle the error.
try { // statements causing exception } catch( ExceptionName e1 ) { // error handling code } finally { // statements to be executed }
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
In C# there is a “try…catch & finally” block to handle the error.
need an explanation for this answer? contact us directly to get an explanation for this answer