BinaryWriter.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 section of a character array to the current stream, and advances the current position of the stream in accordance with the Encoding used and perhaps the specific characters being written to the stream.
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Overridable Sub Write ( _ chars As Char(), _ index As Integer, _ count As Integer _ )
Parameters
- chars
- Type:
System.Char
()
A character array containing the data to write.
- index
- Type: System.Int32
The starting point in buffer from which to begin writing.
- count
- Type: System.Int32
The number of characters to write.
| Exception | Condition |
|---|---|
| ArgumentException | The buffer length minus index is less than count. |
| ArgumentNullException | chars is Nothing. |
| ArgumentOutOfRangeException | index or count is negative. |
| IOException | An I/O error occurs. |
| ObjectDisposedException | The stream is closed. |
Show: