Advertisement
Guest User

Gabitoo

a guest
Feb 3rd, 2013
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.35 KB | None | 0 0
  1. namespace ConsoleApplication1
  2. {
  3.     class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.             StreamReader sr = new StreamReader("NO2.txt");
  8.  
  9.             while (!sr.EndOfStream)
  10.             {
  11.                 Console.WriteLine(sr.ReadLine());
  12.             }
  13.             Console.ReadLine();
  14.             }
  15.         }
  16.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement