Rapaport - TechNet
How to
About
Community
Downloads
Rapaport online
  Rapaport Lot Upload code samples and helpful tips
Other code samples:


//save string to a file.
//using System.IO;
string str = "my string";

using (TextWriter tw = new StreamWriter("c:\\file.txt", true))
{
tw.Write(str);
}