访问dll的方法
如何使用c#访问.net中dll的方法
how to access the methods of a dll in .net using c#
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用c#访问.net中dll的方法
how to access the methods of a dll in .net using c#
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
将 dll 包含在项目的引用文件夹中。
这是一篇关于这样做的好文章: http:// msdn.microsoft.com/en-us/library/wkze6zky%28VS.80%29.aspx
Include the dll in your references folder in your project.
Here is a good article on doing that: http://msdn.microsoft.com/en-us/library/wkze6zky%28VS.80%29.aspx
这取决于你所说的 Dll 类型。如果您谈论的是 .Net Dll,即没有入口点的 .Net 程序集,那么 Abe 的答案适用。如果您正在谈论用 C 编写的非托管/本机 DLL,则应该使用 System.Runtime.InteropServices 名称中定义的 Dllimport 属性。 此链接可能对您有帮助。
That depends on what kind of Dll you are talking about. If you are talking about .Net Dll's, that is, .Net assemblies without an entry point, then Abe's answer applies. If you are talking about unmanaged/native DLL's written in C, you should use the Dllimport attribute in defined in System.Runtime.InteropServices namespcae. This link might help you.
.net
非
.net
unmanaged