What is the purpose of the Using block in C#? How is it different from a local variable?
|
|
If the type implements IDisposable, it automatically disposes it. Given:
These are equivalent:
The second is easier to read and maintain. |
||||||
|
|
|
Using calls Dispose() after the using-block is left, even if the code throws an exception. So you usually use using for classes that require cleaning up after them, like IO. So, this using block:
would do the same as:
Using using is way shorter and easier to read. |
||
|
|
|
|
Placing code in a using block ensures that the objects are disposed (though not necessarily collected) as soon as control leaves the block. |
||
|
|
|
|
From MSDN:
In other words, the |
||||||||
|
|
|
is equivalent to
|
||
|
|
|
|
The using statement obtains one or more resources, executes a statement, and then disposes of the resource. |
||
|
|
|
|
It is really just some syntatic sugar that does not require you to explicity call Dispose on members that implement IDisposable. |
||
|
|
