Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace ConsoleAppWhileExit
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- Console.OutputEncoding = Encoding.UTF8;
- string message;
- message = Console.ReadLine();
- while(message != "exit")
- {
- Console.WriteLine("Это - цикл");
- }
- Console.ReadKey(); //Ожидается нажание какой либо клавиши
- }
- }
- }
Add Comment
Please, Sign In to add comment