Login
Remember
Register
Ask a Question
In try block if we add return statement whether finally block is executed in C#?
0
votes
asked
Oct 18, 2019
in
C Sharp
by
Robin
In try block if we add return statement whether finally block is executed in C#?
c#
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Oct 18, 2019
by
rajeshsharma
Yes. Finally block will still be executed in presence of return statement in try block.
...