Beispiel #1
0
        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);
        }
Beispiel #2
0
 public void CopyTo(__Array dest, int soffset)
 {
     Copy(this, soffset, dest, 0, ((Array)(object)this).Length - soffset);
 }
Beispiel #3
0
 public static void Copy(__Array sourceArray, __Array destinationArray, int length)
 {
     java.lang.System.arraycopy(sourceArray, 0, destinationArray, 0, length);
 }