Ejemplo n.º 1
0
 public static IntPtr Set(byte *dest, int c, int count)
 {
     return(Platform.RunningOnPosix
         ? PosixUnmanagedMemory.Set(dest, c, count)
         : Win32UnmanagedMemory.Set(dest, c, count));
 }