This topic has not yet been rated - Rate this topic

BinaryWriter.Write Method (Char[], Int32, Int32)

May 02, 2013

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)
public virtual void Write(
	char[] chars,
	int index,
	int count
)

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.
ExceptionCondition
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.

Windows Phone OS

Supported in: 8.0, 7.1, 7.0

Windows Phone

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.