Last active
October 18, 2015 07:56
-
-
Save joyhuang9473/512369392db11ac1f2cf to your computer and use it in GitHub Desktop.
You may choose between =, (), and {}; the following are all correct:
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
int x = 3; | |
int x(3); | |
int x{3}; | |
string name = "Some Name"; | |
string name("Some Name"); | |
string name{"Some Name"}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment