public static void MemCpy(IntPtr a, IntPtr b, IntPtr count) { if (OperatingSystem.IsWindows()) { Windows.MemCpy(a, b, count); } else { Unix.MemCpy(a, b, count); } }