JavaSystem.Arraycopy(Object, Int32, Object, Int32, Int32) Method

Definition

Copies an array from the specified source array, beginning at the specified position, to the specified position of the destination array.

[Android.Runtime.Register("arraycopy", "(Ljava/lang/Object;ILjava/lang/Object;II)V", "")]
public static void Arraycopy (Java.Lang.Object src, int srcPos, Java.Lang.Object dest, int destPos, int length);
[<Android.Runtime.Register("arraycopy", "(Ljava/lang/Object;ILjava/lang/Object;II)V", "")>]
static member Arraycopy : Java.Lang.Object * int * Java.Lang.Object * int * int -> unit

Parameters

src
Object

the source array.

srcPos
Int32

starting position in the source array.

dest
Object

the destination array.

destPos
Int32

starting position in the destination data.

length
Int32

the number of array elements to be copied.

Attributes

Remarks

Java documentation for java.lang.System.arraycopy(java.lang.Object, int, java.lang.Object, int, int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to