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
What is the difference between method and function in c#?
What does addressof operator do in background ?
How does inheritance work in c#?
Which program construct must return a value?
Explain About Web.config
What is writeline in c#?
What is parallel foreach in c#?
What is the syntax for calling an overloaded constructor within a constructor (this() and constructorname() does not compile)?
Explain the serialization in .net
What is console write in c#?
Can int be null in c#?
What is difference between first and firstordefault?
In c#, what will happen if you do not explicitly provide a constructor for a class?
Define sealed classes in c#?
Define strong name in c#?