Java.Nio.FloatBuffer.Get Method
Reads floats from the current position into the specified float array, starting from the specified offset, and increases the position by the number of floats read.

Syntax

[Android.Runtime.Register("get", "([FII)Ljava/nio/FloatBuffer;", "GetGet_arrayFIIHandler")]
public virtual FloatBuffer Get (float[] dest, int off, int len)

Parameters

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

Returns

Documentation for this section has not yet been entered.

Exceptions

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

Remarks

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