Method ToCharArray
ToCharArray(Int32[], Int32, Int32)
Generates char array that represents the provided input code points.
LUCENENET specific.
Declaration
public static char[] ToCharArray(int[] codePoints, int offset, int count)
Parameters
Type | Name | Description |
---|---|---|
System.Int32[] | codePoints | The code array. |
System.Int32 | offset | The start of the text in the code point array. |
System.Int32 | count | The number of code points. |
Returns
Type | Description |
---|---|
System.Char[] | a char array representing the code points between offset and count. |