Java.Lang.StringBuilder.GetChars Method
Copies the requested sequence of characters into dst passed starting at dst.

Syntax

[Android.Runtime.Register("getChars", "(II[CI)V", "")]
public override void GetChars (int start, int end, char[] dest, int destStart)

Parameters

start
the inclusive start index of the characters to copy.
end
the exclusive end index of the characters to copy.
dst
the char[] to copy the characters to.
dstStart
the inclusive start index of dst to begin copying to.

Exceptions

TypeReason
Java.Lang.IndexOutOfBoundsExceptionif the start is negative, the dstStart is negative, the start is greater than end, the end is greater than the current StringBuilder.Length or dstStart + end - begin is greater than dst.length.

Remarks

Copies the requested sequence of characters into dst passed starting at dst.

[Android Documentation]

Requirements

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