Advertisement
Nikitka_36

9.9

Nov 25th, 2014
438
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.37 KB | None | 0 0
  1. http://www.cyberforum.ru/csharp-beginners/thread618613.html
  2.  
  3. using System;
  4. using System.Text;
  5. using System.IO;
  6.  
  7.  
  8. namespace _9._9
  9. {
  10.     class Program
  11.     {
  12.         static void Main()
  13.         {
  14.             int k = 6;
  15.             string text = File.ReadAllText(@"Z:\text.txt");
  16.             Console.WriteLine(text);
  17.             Console.ReadKey();
  18.  
  19.         }
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement