BinaryWriterWrite Method (Char, Int32, Int32) |
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.
Namespace: System.IOAssembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax public virtual void Write(
char[] chars,
int index,
int count
)
Parameters
- chars
- Type: SystemChar
A character array containing the data to write. - index
- Type: SystemInt32
The starting point in chars from which to begin writing. - count
- Type: SystemInt32
The number of characters to write.
Exceptions Exception | Condition |
---|
ArgumentException | The buffer length minus index is less than count. |
ArgumentNullException | chars is null. |
ArgumentOutOfRangeException | index or count is negative. |
IOException | An I/O error occurs. |
ObjectDisposedException | The stream is closed. |
See Also