访问dll的方法

发布于 2024-09-28 08:15:43 字数 26 浏览 1 评论 0原文

如何使用c#访问.net中dll的方法

how to access the methods of a dll in .net using c#

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

软糖 2024-10-05 08:15:43

将 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

墨落画卷 2024-10-05 08:15:43

这取决于你所说的 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.

死开点丶别碍眼 2024-10-05 08:15:43

.net

.net

  • load the Assembly using 'Assembly.Load' or adding a reference
  • use the Classes in the Assembly

unmanaged

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文