StreamWriter Constructor
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Initializes a new instance of the StreamWriter class.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
Overload List
Name | Description | |
---|---|---|
StreamWriter(Stream) | Initializes a new instance of the StreamWriter class for the specified stream by using UTF-8 encoding and the default buffer size. | |
StreamWriter(String) | Initializes a new instance of the StreamWriter class for the specified file by using the default encoding and buffer size. | |
StreamWriter(String, Boolean) | Initializes a new instance of the StreamWriter class for the specified file by using the default encoding and buffer size. If the file exists, it can be either overwritten or appended to. If the file does not exist, this constructor creates a new file. |
Top