public static void Copy(__Array sourceArray, int sourceIndex, __Array destinationArray, int destinationIndex, int length) { // X:\jsc.svn\core\ScriptCoreLibJava\BCLImplementation\System\Security\Cryptography\RSACryptoServiceProvider.cs java.lang.System.arraycopy(sourceArray, sourceIndex, destinationArray, destinationIndex, length); }
public void CopyTo(__Array dest, int soffset) { Copy(this, soffset, dest, 0, ((Array)(object)this).Length - soffset); }
public static void Copy(__Array sourceArray, __Array destinationArray, int length) { java.lang.System.arraycopy(sourceArray, 0, destinationArray, 0, length); }