Skip to content

Instantly share code, notes, and snippets.

@Porges
Created May 3, 2012 00:07
Show Gist options
  • Save Porges/2582077 to your computer and use it in GitHub Desktop.
Save Porges/2582077 to your computer and use it in GitHub Desktop.
revised using statement transform
{
Slow slow = null;
try
{
slow = new Slow();
}
finally
{
if (slow != null)
{
IDisposable disposeMe = slow;
slow = null;
disposeMe.Dispose();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment