Rapaport
Diamonds.Net RapNet.com Rapaport Auctions Fair Trade More
Login Register
Rapaport - TechNet
How to
About
Community
Downloads
Rapaport online
  Rapaport Prices 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);
}