Windows上可用的.NET Framework中的平台调用。

[DllImport("user32.dll", CharSet=CharSet.Auto)]
public static extern MessageBoxResult MessageBox(IntPtr hWnd, String text, String caption, int options);

PInvoke在Linux和Mac OS X平台上可用吗?例如Mono项目?

如果Linux和Mac OS X支持PInvoke,可以在回答中给我一些示例或引用。

谢谢。

最佳答案

与 native 库互操作 http://www.mono-project.com/Interop_with_Native_Libraries

09-15 18:38