Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

finally c# code

try {
   // statements causing exception
} catch( ExceptionName e1 ) {
   // error handling code
} catch( ExceptionName e2 ) {
   // error handling code
} finally {
   // statements to be executed
}
Source by www.tutorialspoint.com #
 
PREVIOUS NEXT
Tagged: #finally #code
ADD COMMENT
Topic
Name
3+2 =