Java.Nio.LongBuffer.Get Method
Reads longs from the current position into the specified long array, starting from the specified offset, and increase the position by the number of longs read.

Syntax

[Android.Runtime.Register("get", "([JII)Ljava/nio/LongBuffer;", "GetGet_arrayJIIHandler")]
public virtual LongBuffer Get (long[] dest, int off, int len)

Parameters

dst
the target long array.
dstOffset
the offset of the long array, must not be negative and not greater than dst.length.
longCount
the number of longs 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 longCount is invalid.
Java.Nio.BufferUnderflowExceptionif longCount is greater than remaining().

Remarks

Reads longs from the current position into the specified long array, starting from the specified offset, and increase the position by the number of longs 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