类似于:
[DllImport("shell32.dll", EntryPoint="ShellAboutA", SetLastError = true)]
public static extern int ShellAbout(IntPtr handle, string AppTitle, string CopyRight, IntPtr AppIcon);
要以用:
using System.Runtime.InteropServices;
using System.Diagnostics;
确实可以,但是我也很想知道c#调用过程中和delphi 之间参数对应的关系问题,比如delphi 中的PChar在c#中用什么类型,十分感谢!