Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- http://www.cyberforum.ru/csharp-beginners/thread618613.html
- using System;
- using System.Text;
- using System.IO;
- namespace _9._9
- {
- class Program
- {
- static void Main()
- {
- int k = 6;
- string text = File.ReadAllText(@"Z:\text.txt");
- Console.WriteLine(text);
- Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement