Home
API Overview
Price Lists
Rapaport Price List API
Price List Structure
Upload Diamonds
Fields and Values
Upload CSV files
Keep Inventory Up-to-date
Upload Results
Images and Certificates
Upload Using Excel
Upload Using API
Upload Jewelry
Instant Inventory
Ready-to-use Widgets
Custom Integration
Generate your own code
Download Listing Service
Integration
Help and Support Forums
Support Forum
Developer Forum
Sample Code
More Information
Rapaport Websites
Download Center
Updates
Subscribe to Rapaport
Saving text files with TextWriter (C#)
//save string to a file.
//using System.IO;
string
str =
"my string"
;
using
(
TextWriter
tw =
new
StreamWriter
(
"c:\\file.txt"
,
true
))
{
tw.Write(str);
}