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. |
|||
|
|
|
From MSDN:
In other words, the |
|||||||||||
|
|
Placing code in a using block ensures that the objects are disposed (though not necessarily collected) as soon as control leaves the block. |
|||
|
|
is equivalent to
|
|||
|
|
|
The using statement obtains one or more resources, executes a statement, and then disposes of the resource. |
|||
|
|
|
Using statement is used to work with an object in C# that inherits IDisposable interface. IDisposable interface has one public method called Dispose that is used to dispose off the object. When we use Using statement, we don't need to explicitly dispose the object in the code, the using statement takes care of it. For eg:
When we use above block, internally the code is generated like this:
For more details read: http://www.codeproject.com/KB/cs/tinguusingstatement.aspx |
||||
|
|
|
It is really just some syntatic sugar that does not require you to explicity call Dispose on members that implement IDisposable. |
|||
|
|