Will the following code work if resource doesn't implement IDisposable?
T resource = new T();
using (resource as IDisposable)
{
...
}
|
Will the following code work if resource doesn't implement IDisposable?
|
|||||||
|
|
Yes, it will work, check this running test:
It just runs without any issue. If the corresponding class implements IDisposable it will call it, if not it will still work/run :). Update: As others have said, I also wonder what's the use you want to give to it. My guess is you have something like a factory that can get instances from different classes, which may or may not be disposable :). |
||||
|
|
|
Yes. A From section 8.13 of the C# 3 spec:
|
|||
|
|
|
It should work fine, even if isn't the "right" approach to disposing of resources. The
So if o never implemented |
|||
|
|
On testing the code, it appears not to result in any compile- or run- time errors. From the language definition (see section 8.13):-
If the type is not convertible to IDisposible the as operator will translate resource to null, and the code encapsulated in the using block will execute perfectly fine, behaving precisely the same as if you hadn't enclosed it in the using block. In short, the answer to your question is yes. |
|||
|
|
|
What's the use of this ? What's the advantage ? What's the benefit ? The using statement will make sure that the Dispose method is called, but if your object doesn't implement IDisposable, I see no use of doing this ? It will work (as in, it won't throw runtime exceptions and it will compile), i've just tested it here but ... With the code you've written down, you can't even make use of the resource as being an IDisposable ... |
|||
|
|
It can be useful when the type explicitly implements IDisposable in which case the Dispose method is not directly accessible on the type unless the type is casted to an IDisposable, Using the 'as' does a safe cast and ensures that Dispose is called. In most cases when the type explicitly implements IDisposable, it provides methods such as 'Close' which in turn calls Dispose |
|||
|
|
|
I believe the compiler does add checks to determine if it is null before attempting to call Dispose. http://aspnetresources.com/blog/the_very_handy_using_statement.aspx |
|||
|
|