Read a native array of wchar_t of size arraySize from the given offset from this Pointer.
(long offset, int arraySize)
| 694 | given <code>offset</code> from this {@link Pointer}. |
| 695 | */ |
| 696 | public char[] getCharArray(long offset, int arraySize) { |
| 697 | char[] buf = new char[arraySize]; |
| 698 | read(offset, buf, 0, arraySize); |
| 699 | return buf; |
| 700 | } |
| 701 | |
| 702 | /** Read a native array of int16 of size <code>arraySize</code> from the |
| 703 | given <code>offset</code> from this {@link Pointer}. |