Sininerebane

Untitled

May 17th, 2023
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.50 KB | Software | 0 0
  1. namespace ConsoleAppWhileExit
  2. {
  3.     internal class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.             Console.OutputEncoding = Encoding.UTF8;
  8.  
  9.             string message;
  10.             message = Console.ReadLine();
  11.  
  12.             while(message != "exit")
  13.             {
  14.                 Console.WriteLine("Это - цикл");
  15.             }
  16.                 Console.ReadKey(); //Ожидается нажание какой либо клавиши
  17.             }
  18.         }
  19.     }
Add Comment
Please, Sign In to add comment