2 references to StreamWriter
mscorlib (2)
system\io\file.cs (1)
890
using (StreamWriter sw = new
StreamWriter
(path, false, encoding, StreamWriter.DefaultBufferSize, checkHost))
system\io\streamwriter.cs (1)
174
public StreamWriter(String path, bool append, Encoding encoding, int bufferSize):
this
(path, append, encoding, bufferSize, true) {