如何访问bin子目录下的dll。 。网?
我在 vs 2010 的解决方案资源管理器中向 bin 添加一个新文件夹,在该文件夹中我有一个 dll 文件,我想在 c#.net 的程序中访问该 dll 文件? 我在代码中使用了using,但我没有得到该dll的智能。请帮我 ?
i am adding a new folder to bin in solution explorer in vs 2010 and in that folder i am having one dll file and i want to access that dll file in the program in c#.net?
i used using in code but i did not get the intelligence of that dll . please help me ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试添加它作为参考。
在“解决方案资源管理器”中,右键单击项目节点,然后单击“添加引用”。
在“添加引用”对话框中,浏览到它。
如何:在 Visual Studio 中添加或删除引用 (MSDN)
Try adding it as a reference.
In Solution Explorer, right-click the project node and click Add Reference.
In the Add Reference dialog box, browse to it.
How to: Add or Remove References in Visual Studio (MSDN)
不要将文件添加到解决方案的目标 bin 文件夹,因为该文件夹由 Visual Studio 控制。
如果该库是 .NET 或 COM 库,请将其添加为引用。
如果库是本机 dll,请执行以下操作:
然后 Visual Studio 将确保该库自动复制到您可以访问它的目标文件夹。
Don't add files to the target bin folder of your solution as this folder is controlled by Visual Studio.
If the library is a .NET or COM library add it as a reference.
If the libary is a native dll do the following:
Then Visual Studio will make sure that the library gets copied to the target folder automatically where you can access it.
我假设您询问网络解决方案。
在网络解决方案 bin 中没有任何子文件夹。所有 dll 都驻留在 bin 本身中。
因此,将 dll 直接放入 bin 中...重建完整的解决方案,您将得到您想要的。
谢谢
I am assuming you asking about web solutions.
In web solutions bins doesn't have any sub folder. All the dlls reside just in the bin itself.
So drop the dll directly in bin...rebuild the full solution and you will get what you want.
Thanks