Esempio n. 1
0
 public unsafe static void CopyBlockUnaligned(void *destination, void *source, uint byteCount)
 {
     // IL cpblk instruction
     Unsafe.CopyBlockUnaligned(destination, source, byteCount);
 }
Esempio n. 2
0
 public static void CopyBlockUnaligned(ref byte destination, ref byte source, uint byteCount)
 {
     // IL cpblk instruction
     Unsafe.CopyBlockUnaligned(ref destination, ref source, byteCount);
 }