Skip to content

Instantly share code, notes, and snippets.

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