Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有从 C# (ASP.NET) 调用本机 C++ 或 Delphi Dlls 的最佳实践?调用或 COM 互操作是访问这些 Dll 的最佳方式吗?
您可以使用 DllImport 来实现您的目标,如下所示:
[DllImport("kernel32.dll")] public static extern IntPtr OpenProcess(uint dwDesiredAccess, bool bInheritHandle, int dwProcessId);
您可以将它与任何与 Win32 兼容的 DLL 一起使用,包括 Delphi 的。