Please look at this code:
enum Screen {MainMenu, Password, Win}
Screen currentScreen=Screen.MainMenu;
Screen currentScreen1;
currentScreen1 = Screen.MainMenu;
It seems like the third and fourth line do the same job as the second. But on Visual Studio the fourth line gets errors.
Anyone…?