Java.Nio.IntBuffer.Get Method
Reads ints from the current position into the specified int array, starting from the specified offset, and increases the position by the number of ints read.

Syntax

[Android.Runtime.Register("get", "([III)Ljava/nio/IntBuffer;", "GetGet_arrayIIIHandler")]
public virtual IntBuffer Get (int[] dest, int off, int len)

Parameters

dst
the target int array.
dstOffset
the offset of the int array, must not be negative and not greater than dst.length.
intCount
the number of ints to read, must be no less than zero and not greater than dst.length - dstOffset.

Returns

Documentation for this section has not yet been entered.

Exceptions

TypeReason
Java.Lang.IndexOutOfBoundsExceptionif either dstOffset or intCount is invalid.
Java.Nio.BufferUnderflowExceptionif intCount is greater than remaining().

Remarks

Reads ints from the current position into the specified int array, starting from the specified offset, and increases the position by the number of ints read.

[Android Documentation]

Requirements

Namespace: Java.Nio
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1