Advertisement
Atanasov_88

Untitled

Oct 1st, 2015
323
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.43 KB | None | 0 0
  1. private static void EndGame()
  2.     {
  3.        
  4.          Console.WriteLine("Do you want to play again? Enter button \"Y\" for yes and \"N\" for no :)");
  5.  
  6.          ConsoleKeyInfo endGameKey = Console.ReadKey();
  7.  
  8.          if (endGameKey.Key == ConsoleKey.Y)
  9.          {
  10.              Main();
  11.          }
  12.          if (endGameKey.Key == ConsoleKey.N)
  13.          {
  14.              System.Environment.Exit(0);
  15.          }
  16.  
  17.        
  18.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement