我可以使用 PInvoke 从我自己的 dll 中调用方法吗?
我有一些自己写的dll。我想知道是否可以使用 PInvoke 从我的 C# 代码中调用它们?
I have some dll writtern by my self. I am wondering if I can use PInvoke to call them from my C# code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用C# DllImport 和 Dllexport for DLL Interop 文章作为起点。
You may use C# DllImport and Dllexport for DLL Interop article as a starting point.
查看 P/Invoke 上的这些资源:
使用 P/Invoke 在 C# 中调用 Win32 DLL
在此答案中,您可能会发现如何准备 dll 以使其适合 P/Invoke:
在 C# 中为 p/invoke 创建基本 C++ .dll
Check out these sources on P/Invoke:
Calling Win32 DLLs in C# with P/Invoke
In this answer you might find how you could prepare your dll to make it suitable for P/Invoke:
Creating a basic C++ .dll for p/invoke in C#