Streamwriter Question

Cabose

Active member
Joined
Oct 18, 2006
Messages
39
Programming Experience
Beginner
Is there a way to write to a file without overwriting everything that is already in the file?~Cabose
 
when declaring the StreamWriter (or TextWriter) simply add a comma and type in 'True' to specify that you'll be appending to the file, not overwriting
 
Back
Top