不同程序集中存在重复的命名空间和函数名称
我在 Visual Studio 2010 中有一个项目,我正在使用 C# 和 .NetFramework 4.0。有没有办法对两个具有相同名称、命名空间和函数名称但内部实现/逻辑不同的 dll 进行两个引用?
I have a project in visual studio 2010 and I'm using C# with .NetFramework 4.0. Is there a way of having two references to two dlls which have the same name, namespace and function names, but different internal implementation/logic?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如汉斯指出的,您需要使用别名。这篇博客文章更详细地解释了这一点。
As Hans pointed out, you'd need to use aliases. This blog post explains this in better detail.