Created
September 27, 2011 08:29
-
-
Save caleb-vear/1244609 to your computer and use it in GitHub Desktop.
Always user a comma
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var array = new [] | |
| { | |
| "Hello", | |
| + "World", | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var anon = new | |
| { | |
| - Foo = "Bar" | |
| + Foo = "Bar", | |
| + Greeting = SomeMethod() | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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