I am trying to get my game to quit when I press the Esc key. I can get it to quit with most keys except with escape, alt, ctrl, and symbol keys. can someone link me to a page that gives the code I need for different keys I would be very appreciative.
This is the code I am using to close the game:
Code:
if (Keyboard.GetState().IsKeyDown(Keys.Q))
this.Exit();
It works with Q but not with Escape.