User kokos answered the wonderful Hidden Features of C# question by mentioning the using keyword. Can you elaborate on that? What are good uses of using?
|
2
|
|
|
|
|
|
The reason for the "using" statement is to ensure that the object is always disposed correctly, and it doesn't require explicit code to ensure that this happens. As per http://www.codeproject.com/KB/cs/tinguusingstatement.aspx, the .NET CLR converts
to
|
||
|
|
|
When using ADO.NET you can use the keywork for things like your connection object or reader object. That way when the code block completes it will automatically dispose of your connection. |
||||
|
|
|
Things like this:
This SqlConnection will be closed even if an exception is thrown, without the need for a try/catch/finally. |
||
|
|
|
|
RhinoMocks makes an intersting use for |
||
|
|
|
Thanks to the comments below, I will clean this post up a bit (I shouldn't have used the words 'garbage collection' at the time, apologies): |
||||
|
|
|
using can be used to call IDisposable. It can also be used to alias types.
|
||
|
|
|
|
"using" can also be used to resolve name space conflicts. See http://www.davidarno.org/c-howtos/aliases-overcoming-name-conflicts/ for a short tutorial I wrote on the subject. |
||
|
|
|
|
The using keyword defines the scope for the object and then disposes of the object when the scope is complete. For example.
See here for the MSDN article on the C# using keyword. |
|||
|
|
|
|
using is used when you have a resource that you want disposed after it's been used. For instance if you allocate a File resource and only need to use it in one section of code for a little reading or writing, using is helpful for disposing of the File resource as soon as your done. The resource being used needs to implement IDisposable to work properly. Example:
|
||
|
|
|
|
Interestingly, you can also use the using/IDisposable pattern for other interesting things (such as the other point of the way that Rhino Mocks uses it). Basically, you can take advantage of the fact that the compiler will always call .Dispose on the "used" object. If you have something that needs to happen after a certain operation ... something that has a definite start and end ... then you can simply make an IDisposable class that starts the operation in the constructor, and then finishes in the Dispose method. This allows you to use the really nice using syntax to denote the explicit start and end of said operation. This is also how the System.Transactions stuff works. |
||
|
|
|
|
I've used it a lot in the past to work with input and output streams. You can nest them nicely and it takes away a lot of the potential problems you usually run into (by automatically calling dispose). For example:
|
||
|
|
|
|
It's a C# way of supporting the RAII idiom: http://www.hackcraft.net/raii/ |
||
|
|
|
|
Stupid answer but since no one has said it yet:
|
||
|
|
|
|
Not that it is ultra important, but using can also be used to change resources on the fly. Yes disposable as mentioned earlier, but perhaps specifically you don't want the resources they mismatch with other resources during the rest of your execution. So you want to dispose of it so it doesn't interfere elsewhere. |
||
|
|
|
|
Since a lot of people still don't know that you can do:
I guess a lot of people still don't know that you can do:
|
||
|
|
|
|
|
||
|
|
|
|
In conclusion, when you use a local variable of a type that implements If you use nonlocal Two simple rules, no exception1. Preventing resource leaks otherwise is a real pain in the *ss. 1): The only exception is – when you're handling exceptions. It might then be less code to call |
||
|
|
|
|
Another example of a reasonable use in which the object is immediately disposed:
|
||
|
|
|
|
Another great use of using is when instantiating a modal dialog. Using frm as new Form1 Form1.ShowDialog ' do stuff here" End Using" |
||
|
|
|
|
using, in the sense of
Is actually shorthand for a try/finally block. It is equivalent to the code:
You'll note, of course, that the first snippet is much more concise than the second and also that there are many kinds of things that you might want to do as cleanup even if an exception is thrown. Because of this, we've come up with a class that we call Scope that allows you to execute arbitrary code in the Dispose method. So, for example, if you had a property called IsWorking that you always wanted to set to false after trying to perform an operation, you'd do it like this:
You can read more about our solution and how we derived it here. |
||
|
|
|
|
Everything outside the curly brackets is disposed, so it is great to dispose your objects if you are not using them. This is so because if you have a SqlDataAdapter object and you are using it only once in the application life cycle and you are filling just one dataset and you don't need it anymore, you can use the code:
|
||
|
|
