예제 #1
0
파일: Unsafe.cs 프로젝트: zyj0021/ILSpy
 public static void CopyBlock(ref byte destination, ref byte source, uint byteCount)
 {
     // IL cpblk instruction
     Unsafe.CopyBlock(ref destination, ref source, byteCount);
 }
예제 #2
0
파일: Unsafe.cs 프로젝트: zyj0021/ILSpy
 public unsafe static void CopyBlock(void *destination, void *source, uint byteCount)
 {
     // IL cpblk instruction
     Unsafe.CopyBlock(destination, source, byteCount);
 }