Last active
February 6, 2017 11:52
-
-
Save LukaJCB/2801f404fe983fe6981f7a7e4567a192 to your computer and use it in GitHub Desktop.
This file contains 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
//mutable | |
int x = 1; | |
var y = new Dictionary<string, string>(); | |
//immutable | |
const int a = 1; | |
const var b = new Dictionary<string, string>(); // Won't compile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment