Java.Nio.FloatBuffer.Put Method
Writes floats from the given float array to the current position and increases the position by the number of floats written.

Syntax

[Android.Runtime.Register("put", "([F)Ljava/nio/FloatBuffer;", "")]
public FloatBuffer Put (float[] src)

Parameters

src
the source float array.

Returns

Documentation for this section has not yet been entered.

Exceptions

TypeReason
Java.Nio.BufferOverflowExceptionif remaining() is less than src.length.
Java.Nio.ReadOnlyBufferExceptionif no changes may be made to the contents of this buffer.

Remarks

Writes floats from the given float array to the current position and increases the position by the number of floats written.

Calling this method has the same effect as put(src, 0, src.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