StringWriter::Write Method (array<Char>^, Int32, Int32)
Writes a subarray of characters to the string.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- buffer
-
Type:
array<System::Char>^
The character array to write data from.
- index
-
Type:
System::Int32
The position in the buffer at which to start reading data.
- count
-
Type:
System::Int32
The maximum number of characters to write.
| Exception | Condition |
|---|---|
| ArgumentNullException | buffer is null. |
| ArgumentOutOfRangeException | index or count is negative. |
| ArgumentException | (index + count)> buffer. Length. |
| ObjectDisposedException | The writer is closed. |
This method overrides TextWriter::Write.
This method writes count characters of data to this StringWriter from buffer, starting at position index.
The following table lists examples of other typical or related I/O tasks.
To do this... | See the example in this topic... |
|---|---|
Create a text file. | |
Write to a text file. | |
Read from a text file. | |
Append text to a file. | |
Get the size of a file. | |
Get the attributes of a file. | |
Set the attributes of a file. | |
Determine if a file exists. | |
Read from a binary file. | |
Write to a binary file. |
This code example is part of a larger example provided for the StringWriter() constructor.
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1