TextWriter.Write Method (Char(), Int32, Int32)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Writes a subarray of characters to the text stream.
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Overridable Sub Write ( _ buffer As Char(), _ index As Integer, _ count As Integer _ )
Parameters
- buffer
- Type:
System.Char
()
The character array to write data from.
- index
- Type: System.Int32
Starting index in the buffer.
- 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 Nothing. |
| ArgumentOutOfRangeException | index or count is negative. |
| ObjectDisposedException | The TextWriter is closed. |
| IOException | An I/O error occurs. |
Show: