Explicit Conversion to IDisposable
I am using some XmlReader
and XmlWriter
object to do some needed work on strings inside some try...catch
blocks.
I know that using the notation using (XmlReader NewReader = XmlReader.Create(...))
is the prefered syntax, but I don't really like that so I am also appending finally
blocks and executing NewReader.Close();
and NewWriter.Close();
.
However, code analysis is complaining that these objects aren't being disposed, thus forcing me to somehow call 开发者_StackOverflow中文版Dispose()
method.
The problem is that in these classes the Dispose()
method is implemented explicitly, so I have to use ((IDisposable)(NewReader)).Dispose();
and ((IDisposable)(NewWriter)).Dispose();
.
Are there any drawbacks to this technique?
There are good reasons for not using using
:
- When the lifetime of the object might need to survive longer than the current block
and there are poor reasons for avoiding using
:
- "I don't really like that"
Does the good reason apply to your code?
Please also note that a simple extension method would make the syntax nice and clean again.
The C# using
statement will always call Dispose
for you. It roughtly translates to the following:
XmlReader NewReader = XmlReader.Create(...);
try
{
// do stuff on NewReader
}
finally
{
((IDisposable)NewReader).Dispose();
}
So wrapping it in finally
youself doesn't add any value. Although Close
and Dispose
are often equivalent, it is not always the case. Because of this FxCop is right, you should always call Dispose
and when you do this (or let the using
statement do this), there is no reason to call Close
manually.
The using
statement is really the preferred solution. It's idiomatic in C#. These classes implement IDisposable
explicitly because they already provide a method that has closing semantics: Close
. My bet is that Dispose
calls Close
, or vice-versa. But you shouldn't count on that, and should always call Dispose
anyway.
In the end, all these are equivalent:
- Use
using
, which is preferred; CallClose
on thefinally
block, and suppress the static analysis warnings or;- Call
Dispose
on thefinally
:((IDisposable)NewReader).Dispose();
精彩评论