Content deleted Content added
m Removed redundant use of "explicitly" |
|||
Line 35:
// Perform actions with the resource.
...
}
</source>
which is equal to:
<source lang="csharp">
Resource resource = GetResource()
try
{
// Perform actions with the resource.
...
}
finally
{
resource.Finalize();
}
</source>
|