Initializes a new instance of the System.IO.StreamWriter class for the specified stream by using UTF-8 encoding and the default buffer size.
The stream to write to.
Writes a character array to the text string or stream.
The character array to write to the text stream.
Writes a string to the text string or stream.
The string to write.
Writes the text representation of an object to the text string or stream by calling the ToString method on that object.
The object to write.
Writes the text representation of a decimal value to the text string or stream.
The decimal value to write.
Writes the text representation of an 8-byte floating-point value to the text string or stream.
The 8-byte floating-point value to write.
Writes the text representation of a 4-byte floating-point value to the text string or stream.
The 4-byte floating-point value to write.
Writes the text representation of an 8-byte unsigned integer to the text string or stream.
The 8-byte unsigned integer to write.
Writes the text representation of a Boolean value to the text string or stream.
The Boolean value to write.
Writes the text representation of a 4-byte unsigned integer to the text string or stream.
The 4-byte unsigned integer to write.
Writes the text representation of a 4-byte signed integer to the text string or stream.
The 4-byte signed integer to write.
Writes a character to the text string or stream.
The character to write to the text stream.
Writes the text representation of an 8-byte signed integer to the text string or stream.
The 8-byte signed integer to write.
Writes an array of characters followed by a line terminator to the text string or stream.
The character array from which data is read.
Writes a string followed by a line terminator to the text string or stream.
The string to write. If value is null, only the line terminator is written.
Writes the text representation of a decimal value followed by a line terminator to the text string or stream.
The decimal value to write.
Writes the text representation of a 8-byte floating-point value followed by a line terminator to the text string or stream.
The 8-byte floating-point value to write.
Writes the text representation of a 4-byte floating-point value followed by a line terminator to the text string or stream.
The 4-byte floating-point value to write.
Writes the text representation of an 8-byte unsigned integer followed by a line terminator to the text string or stream.
The 8-byte unsigned integer to write.
Writes the text representation of a 4-byte signed integer followed by a line terminator to the text string or stream.
The 4-byte signed integer to write.
Writes the text representation of a 4-byte unsigned integer followed by a line terminator to the text string or stream.
The 4-byte unsigned integer to write.
Writes the text representation of a Boolean value followed by a line terminator to the text string or stream.
The Boolean value to write.
Writes a character followed by a line terminator to the text string or stream.
The character to write to the text stream.
Writes the text representation of an object by calling the ToString method on that object, followed by a line terminator to the text string or stream.
The object to write. If value is null, only the line terminator is written.
Writes the text representation of an 8-byte signed integer followed by a line terminator to the text string or stream.
The 8-byte signed integer to write.
Static
EqualsDetermines whether the specified object instances are considered equal.
The first object to compare.
The second object to compare.
true if the objects are considered equal; otherwise, false. If both objA and objB are null, the method returns true.
Implements a System.IO.TextWriter for writing characters to a stream in a particular encoding.