Ejemplo n.º 1
0
 public static int Compare(byte *b1, byte *b2, int count)
 {
     return(Platform.RunningOnPosix
         ? PosixUnmanagedMemory.Compare(b1, b2, count)
         : Win32UnmanagedMemory.Compare(b1, b2, count));
 }