Java.Lang.Character.CodePointCount Method
Counts the number of Unicode code points in the subsequence of the specified char array, as delineated by offset and count.

Syntax

[Android.Runtime.Register("codePointCount", "([CII)I", "")]
public static int CodePointCount (char[] seq, int offset, int count)

Parameters

seq
the char array to look through
offset
the inclusive index to begin counting at.
count
the number of char values to look through in seq.

Returns

Documentation for this section has not yet been entered.

Exceptions

TypeReason
Java.Lang.NullPointerExceptionif seq is null.
Java.Lang.IndexOutOfBoundsExceptionif offset , count or if offset + count is greater than the length of seq.

Remarks

Counts the number of Unicode code points in the subsequence of the specified char array, as delineated by offset and count. Any surrogate values with missing pair values will be counted as one code point.

[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