Java.Lang.Character.CodePointAt Method
Returns the code point at index in the specified array of character units, where index has to be less than limit.

Syntax

[Android.Runtime.Register("codePointAt", "([CII)I", "")]
public static int CodePointAt (char[] seq, int index, int limit)

Parameters

seq
the source array of char units.
index
the position in seq from which to get the code point.
limit
the index after the last unit in seq that can be used.

Returns

Documentation for this section has not yet been entered.

Exceptions

TypeReason
Java.Lang.NullPointerExceptionif seq is null.
Java.Lang.IndexOutOfBoundsExceptionif index , index >= limit, limit or if limit is greater than the length of seq.

Remarks

Returns the code point at index in the specified array of character units, where index has to be less than limit. If the unit at index is a high-surrogate unit, index + 1 is less than limit and the unit at index + 1 is a low-surrogate unit, then the supplementary code point represented by the pair is returned; otherwise the char value at index is returned.

[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