Share via


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

Definition

Writes characters to the buffer.

[Android.Runtime.Register("write", "([CII)V", "GetWrite_arrayCIIHandler")]
public override void Write (char[]? c, int off, int len);
[<Android.Runtime.Register("write", "([CII)V", "GetWrite_arrayCIIHandler")>]
override this.Write : char[] * int * int -> unit

Parameters

c
Char[]

the data to be written

off
Int32

the start offset in the data

len
Int32

the number of chars that are written

Attributes

Exceptions

if offset or len , or if offset + len is bigger than the size of c.

Remarks

Writes characters to the buffer.

Java documentation for java.io.CharArrayWriter.write(char[], int, int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to