IStreamWriter
Represents an abstract wrapper for the StreamWriter class.
Gets the underlying stream that interfaces with a backing store.
void Close()
Closes the current StreamWriter object and the underlying stream.
void Flush()
Clears all buffers for the current writer and causes any buffered data to be written to the underlying stream.
Writes a character to the stream.
Writes a character array to the stream.
Writes a string to the stream.
Writes the text representation of a Boolean value to the text string or stream.
Writes the text representation of a decimal value to the text string or stream.
Writes the text representation of an 8-byte floating-point value to the text string or stream.
Writes the text representation of a 4-byte signed integer to the text string or stream.
Writes the text representation of an 8-byte signed integer to the text string or stream.
Writes the text representation of an object to the text string or stream by calling the ToString method on that object.
Writes the text representation of a 4-byte floating-point value to the text string or stream.
Writes the text representation of a 4-byte unsigned integer to the text string or stream.
Writes the text representation of an 8-byte unsigned integer to the text string or stream.
Writes a formatted string to the text string or stream, using the same semantics as the Format method.
Writes a formatted string to the text string or stream, using the same semantics as the Format method.
Writes a subarray of characters to the text string or stream.
Writes a formatted string to the text string or stream, using the same semantics as the Format method.
Writes a formatted string to the text string or stream, using the same semantics as the Format method.
Writes out a formatted string and a new line, using the same semantics as Format.
Writes out a string and a new line.