Program.cs 349 B

12345678910111213141516171819202122232425262728
  1. using Reconstruction.Functions;
  2. Functions.WelcomePrint();
  3. Console.WriteLine("Please, log in or sign in !\n1 - Log in\n2 - Sing in\n0 - Exit");
  4. switch (Functions.Choose())
  5. {
  6. case 1:
  7. {
  8. Console.WriteLine("1");
  9. break;
  10. }
  11. case 2:
  12. {
  13. Console.WriteLine("2");
  14. break;
  15. }
  16. }
  17. Console.ReadKey();