Skip to content

Instantly share code, notes, and snippets.

@mkrueger
Created April 14, 2012 11:48
Show Gist options
  • Save mkrueger/2383827 to your computer and use it in GitHub Desktop.
Save mkrueger/2383827 to your computer and use it in GitHub Desktop.
class MainClass
{
public void FooBar ()
{
if (true) {
string str = "foo";
}
}
}
-----------------
class MainClass
{
public void FooBar ()
{
if (true)
string str = "foo";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment