示例#1
0
文件: Unsafe.cs 项目: zyj0021/ILSpy
 public unsafe static void CopyBlockUnaligned(void *destination, void *source, uint byteCount)
 {
     // IL cpblk instruction
     Unsafe.CopyBlockUnaligned(destination, source, byteCount);
 }
示例#2
0
文件: Unsafe.cs 项目: zyj0021/ILSpy
 public static void CopyBlockUnaligned(ref byte destination, ref byte source, uint byteCount)
 {
     // IL cpblk instruction
     Unsafe.CopyBlockUnaligned(ref destination, ref source, byteCount);
 }