Advertisement
LeRoY_Go

Untitled

Jun 28th, 2020
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApp5
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. string userInput = "";
  10. while (userInput != "exit")
  11. {
  12. Console.Write("Введите сообщение: ");
  13. userInput = Console.ReadLine();
  14. }
  15. Console.ReadKey();
  16. }
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement