Java.Nio.ShortBuffer.Get Method
Reads shorts from the current position into the specified short array, starting from the specified offset, and increases the position by the number of shorts read.

Syntax

[Android.Runtime.Register("get", "([SII)Ljava/nio/ShortBuffer;", "GetGet_arraySIIHandler")]
public virtual ShortBuffer Get (short[] dest, int off, int len)

Parameters

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

Remarks

Reads shorts from the current position into the specified short array, starting from the specified offset, and increases the position by the number of shorts 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