show/hide this revision's text 2 using has nothing to do with scope, I think you are thinking of "With" like VB

A using statement defines the scope of the objects inside of it.

Once you pass out of the using block, all objects initialized within it are disposed. In your case, the objects will be disposed which will remove the lock on the file.

You must manually dispose (either through a using statement or by calling .Dispose() on the object) any unmanaged calls to either COM or Windows API functions (i.e. when you use interop).

show/hide this revision's text 1 [made Community Wiki]

A using statement defines the scope of the objects inside of it. Once you pass out of the using block, all objects initialized within it are disposed. In your case, the objects will be disposed which will remove the lock on the file.

You must manually dispose (either through a using statement or by calling .Dispose() on the object) any unmanaged calls to either COM or Windows API functions (i.e. when you use interop).