Method NewString
NewString(Int32[], Int32, Int32)
Cover JDK 1.5 API. Create a String from an array of codePoints
.
Declaration
public static string NewString(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.String | a String representing the code points between offset and count. |