Click or drag to resize
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.IO
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
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
ExceptionCondition
ArgumentExceptionThe buffer length minus index is less than count.
ArgumentNullExceptionchars is null.
ArgumentOutOfRangeExceptionindex or count is negative.
IOExceptionAn I/O error occurs.
ObjectDisposedExceptionThe stream is closed.
See Also