0 votes
in C Sharp by
In try block if we add return statement whether finally block is executed in C#?

1 Answer

0 votes
by
Yes. Finally block will still be executed in presence of return statement in try block.
...