JavaSystem.Arraycopy(Object, Int32, Object, Int32, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.