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

Technology CommunityCategory: C#In try block if we add return statement whether finally block is executed in C#?
VietMX Staff asked 3 years ago

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