Exemplo n.º 1
0
 public static void Free(IntPtr p)
 {
     if (OperatingSystem.IsWindows())
     {
         Windows.Free(p);
     }
     else
     {
         Unix.Free(p);
     }
 }