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

Syntax

[Android.Runtime.Register("get", "([I)Ljava/nio/IntBuffer;", "GetGet_arrayIHandler")]
public virtual IntBuffer Get (int[] dest)

Parameters

dst
the destination int array.

Returns

Documentation for this section has not yet been entered.

Exceptions

TypeReason
Java.Nio.BufferUnderflowExceptionif dst.length is greater than remaining().

Remarks

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

Calling this method has the same effect as get(dst, 0, dst.length).

[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