The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
TextWriter::Write Method (array<Char>^, Int32, Int32)
.NET Framework (current version)
Writes a subarray of characters to the text string or stream.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- buffer
-
Type:
array<System::Char>^
The character array to write data from.
- index
-
Type:
System::Int32
The character position in the buffer at which to start retrieving data.
- count
-
Type:
System::Int32
The number of characters to write.
| Exception | Condition |
|---|---|
| ArgumentException | The buffer length minus index is less than count. |
| ArgumentNullException | The buffer parameter is null. |
| ArgumentOutOfRangeException | index or count is negative. |
| ObjectDisposedException | The TextWriter is closed. |
| IOException | An I/O error occurs. |
This method will write count characters of data into this TextWriter from the buffer character array starting at position index.
This overload is equivalent to the Write(array<Char>^) overload for each character in buffer between index and (index + count).
For a list of common I/O tasks, see Common I-O Tasks.
Universal Windows Platform
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
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
Show: