Copies the bytes from one object to another.
[Visual Basic] Public Shared Sub BlockCopy( _ ByVal src As Array, _ ByVal srcOffset As Integer, _ ByVal dst As Array, _ ByVal dstOffset As Integer, _ ByVal count As Integer _ ) [C#] public static void BlockCopy( Array src, int srcOffset, Array dst, int dstOffset, int count ); [C++] public: static void BlockCopy( Array* src, int srcOffset, Array* dst, int dstOffset, int count ); [JScript] public static function BlockCopy( src : Array, srcOffset : int, dst : Array, dstOffset : int, count : int );
The bytes in src beginning at the byte offset given by srcOffset are copied to dst beginning at the byte offset given by dstOffset.