If we write a goto or a return statement in try and catch
block will the finally block execute?
Answer Posted / om namo bagavathe vasudevaya n
what ever goto or continue statement you used in try/catch
the finally bolck must be executed
even an exception occuerd or an exception not occured in the
try block the finally block defanetly executed
but they are some excptions like system exceptions and
application exceptions.For this exceptions the finally block
may or may not excute because
SYSTEM EXCEPTIONS:this excptions occur during runtime
examples:some hardware problems
Application Exception:they also probally occur whill the
application is running
example:if we give textbox maximum size limt as 50
characters.If we enter morethan 50 characters then some
exceptions should occur
| Is This Answer Correct ? | 13 Yes | 2 No |
Post New Answer View All Answers
Can struct be static in c#?
What is view state c#?
What is eager and lazy loading in c#?
What is window application in c#?
Is everything an object c#?
what are pointer types in c#
What is the use of tuple in c#?
Why do we need interface in c#?
What is default c#?
What type of data type conversion happens when the compiler encounters the following code?
Is string primitive?
What is a static in c#?
Explain lock, monitors, and mutex object in threading.
What types of object can I throw as exceptions?
Can a string be null c#?