コード例 #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);
 }