René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback
 

Files with .NET

using System;
using System.IO;

class FileExp {
  static void Main() {
    string path = "C:\\temp\\bla.txt";
    StreamReader s = File.OpenText(path);
    string read = null;
  
    read = s.ReadToEnd();
  
    Console.WriteLine(read);
  }
}