AvalonEdit
Write Method (buffer, index, count)
NamespacesICSharpCode.AvalonEdit.DocumentDocumentTextWriterWrite(array<Char>[]()[][], Int32, Int32)
Writes a subarray of characters to the text stream.
Declaration Syntax
C#Visual BasicVisual C++
public override void Write(
	char[] buffer,
	int index,
	int count
)
Public Overrides Sub Write ( _
	buffer As Char(), _
	index As Integer, _
	count As Integer _
)
public:
virtual void Write(
	array<wchar_t>^ buffer, 
	int index, 
	int count
) override
Parameters
buffer (array<Char>[]()[][])
The character array to write data from.
index (Int32)
Starting index in the buffer.
count (Int32)
The number of characters to write.
Exceptions
ExceptionCondition
ArgumentExceptionThe buffer length minus index is less than count.
ArgumentNullExceptionThe buffer parameter is null.
ArgumentOutOfRangeExceptionindex or count is negative.
ObjectDisposedExceptionThe TextWriter is closed.
IOExceptionAn I/O error occurs.

Assembly: ICSharpCode.AvalonEdit (Module: ICSharpCode.AvalonEdit.dll) Version: 5.0.0.4238