I just want to know is it safe/ good approach to call return inside a using block.
For ex.
using(var scope = new TransactionScope())
{
// my core logic
return true; // if condition met else
return false;
scope.Complete();
}
We know the at the last most curly brace dispose() will get called off. But what will be in the above case, since return jumps the control out of the given scope (AFAIK)...
- Is my
scope.Complete()get called? - And so for the scope's
dispose()method.

using{}scope is over, the relevant objects get disposed,returnwill "break" the scope - so the objects will get disposed as expected – Shai Aug 2 '12 at 12:02scope.Complete()call will never be hit with the sample you provided, so you're transaction will always rollback. – Andy Aug 2 '12 at 16:08using'sdispose()is called, when the you return, the function containing thisusingblock will have returned and everything belonging to it will be orphaned. So even ifscopehad not been disposed "by theusing" (it will be, as others explained) it will be disposed anyway because the function ended. If C# hadgotostatement -are you done laughing yet? good- then instead of return you couldgototo after the closing brace, without returning. Logically,scopewould still be disposed, but you've just putgotoin C# so who cares about logic at that stage. – Superbest Sep 1 '12 at 2:03