Advertisement
maxlarin2

readfromfiles

Nov 15th, 2013
323
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.28 KB | None | 0 0
  1. static void Main(string[] args)
  2.         {
  3.             string text = System.IO.File.ReadAllText(@"F:\ИТМО\ОП\Лабораторные\Строки\Input.txt");
  4.             Console.WriteLine("Текст из файла {0}", text);
  5.             Console.ReadLine();
  6.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement