Skip to content

Instantly share code, notes, and snippets.

@caleb-vear
Created September 27, 2011 08:29
Show Gist options
  • Select an option

  • Save caleb-vear/1244609 to your computer and use it in GitHub Desktop.

Select an option

Save caleb-vear/1244609 to your computer and use it in GitHub Desktop.
Always user a comma
var array = new []
{
"Hello",
+ "World",
};
var anon = new
{
- Foo = "Bar"
+ Foo = "Bar",
+ Greeting = SomeMethod()
};
var value = new
{
Foo = "Bar",
};
var list = new []
{
"Foo",
"Bar",
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment