Content deleted Content added
No edit summary |
c# code fixed due to http://www.codeproject.com/Articles/6564/Understanding-the-using-statement-in-C (2013-01-28) |
||
Line 47:
finally
{
if (resource != null) // Resource might not been acquired, or already freed
((IDisposable)resource).Dispose();
}
</source>
|