Click or drag to resize

LineWrappingTextWriterWrite Method (Char, Int32, Int32)

Writes a subarray of characters to the text stream.

Namespace:  Ookii.CommandLine
Assembly:  Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 2.3.0
Syntax
public override void Write(
	char[] buffer,
	int index,
	int count
)

Parameters

buffer
Type: SystemChar
The character array to write data from.
index
Type: SystemInt32
Starting index in the buffer.
count
Type: SystemInt32
The number of characters to write.
Exceptions
ExceptionCondition
ArgumentException The buffer length minus index is less than count.
ArgumentNullException The buffer parameter is null.
ArgumentOutOfRangeExceptionindex or count is negative.
ObjectDisposedException The LineWrappingTextWriter is closed.
IOException An I/O error occurs.
See Also