AlexRaynor

3.4.4.

Feb 13th, 2018
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.27 KB | None | 0 0
  1.  class Program
  2.     {
  3.  
  4.         static void Main(string[] args)
  5.         {
  6.             while (true)
  7.             {
  8.                 string line = Console.ReadLine() + Environment.NewLine;
  9.                 File.AppendAllText("Doc.txt", line);
  10.             }
  11.         }
  12.     }
Advertisement
Add Comment
Please, Sign In to add comment