Java.Lang.JavaSystem.Arraycopy Method
Copies length elements from the array src, starting at offset srcPos, into the array dst, starting at offset dstPos.

Syntax

[Android.Runtime.Register("arraycopy", "(Ljava/lang/Object;ILjava/lang/Object;II)V", "")]
public static void Arraycopy (Object src, int srcPos, Object dest, int destPos, int length)

Parameters

src
the source array to copy the content.
srcPos
the starting index of the content in src.
dst
the destination array to copy the data into.
dstPos
the starting index for the copied content in dst.
length
the number of elements to be copied.

Remarks

Copies length elements from the array src, starting at offset srcPos, into the array dst, starting at offset dstPos.

The source and destination arrays can be the same array, in which case copying is performed as if the source elements are first copied into a temporary array and then into the destination array.

[Android Documentation]

Requirements

Namespace: Java.Lang
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1