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:


//to save binary files:
//using System.IO;
//responseBytes is the byte array
FileStream fs = new FileStream("c:\\result3.csv", FileMode.Create, FileAccess.ReadWrite);
BinaryWriter bw = new BinaryWriter(fs);
bw.Write(responseBytes);
bw.Close();