Created
October 21, 2017 09:51
-
-
Save NMZivkovic/8a45adc29e59a0d456faba4b83d14dde to your computer and use it in GitHub Desktop.
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 = 1; | |
int y = 1; | |
retrun x == y; //retruns true | |
var x = new SomeType(); | |
var y = new SomeType(); | |
return x == y, //returns false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
the word "retrun" are correct?