Java.IO.BufferedWriter.Write Method
Writes count characters starting at offset in buffer to this writer.

Syntax

[Android.Runtime.Register("write", "([CII)V", "GetWrite_arrayCIIHandler")]
public override void Write (char[] cbuf, int offset, int count)

Parameters

buffer
the array containing characters to write.
offset
the start position in buffer for retrieving characters.
count
the maximum number of characters to write.

Exceptions

TypeReason
Java.Lang.IndexOutOfBoundsExceptionif offset or count , or if offset + count is greater than the size of buffer.
Java.IO.IOExceptionif this writer is closed or another I/O error occurs.

Remarks

Writes count characters starting at offset in buffer to this writer. If count is greater than this writer's buffer, then the buffer is flushed and the characters are written directly to the target writer.

[Android Documentation]

Requirements

Namespace: Java.IO
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1