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.
我有一个具有 10 个方法和 12 个属性的 c++ dll,是否有任何方法或任何应用程序可以导出要在 c# 中使用的方法的 p/invoke 格式?我已经使用 OLE 查看器来检查所有方法,例如:
[id(0x00000013)] BSTR GetCPUID( short BeginAddress, short EndAddress);
但我不知道如何在 c# 中使用这个函数。
也许这篇文章可以帮助你
http://www.codeproject.com/Articles/18032/How-to-Marshal-aC-Class
让我知道这是否有帮助。