Exemplo n.º 1
0
 public static void DeepCopy(this UInt64[] src, int srcOff, UInt64[] dst, int dstOff, int length)
 {
     Shared.ThrowOnInvalidArgument(src, dst, length, srcOff, dstOff);
     DeepCopy_NoChecks(src, srcOff, dst, dstOff, length);
 }
Exemplo n.º 2
0
 public static void DeepCopy(this UInt64[] src, UInt64[] dst)
 {
     Shared.ThrowOnInvalidArgument(src, dst, src.Length);
     DeepCopy_NoChecks(src, 0, dst, 0, src.Length);
 }