Can we have return keyword in finally block?
In c# it is not allowed to use return keyword in finally block.
For reference check below link
https://www.geeksforgeeks.org/c-sharp-finally-keyword/
No
C# doen not allow you to leave any statement in finally block. SO return keyword in finally block is not possible.