Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ReadText
- {
- class Program
- {
- static void Main(string[] args)
- {
- while (true)
- {
- string input = Console.ReadLine();
- if (input == "Stop")
- {
- break;
- }
- Console.WriteLine(input);
- }
- }
- }
- }
Add Comment
Please, Sign In to add comment