如何解决 .Net 命名空间与“using”的冲突? 关键词?
问题是,您包含多个程序集并在代码文件顶部添加“using namespaceX”。
现在您想要创建一个类或使用在多个命名空间中定义的符号, 例如 System.Windows.Controls.Image
& System.Drawing.Image
现在,除非您使用完全限定名称,否则尽管顶部有正确的“using”声明,但由于不明确,将会出现 crib/build 错误。 这里的出路是什么?
(另一篇知识库帖子..我在搜索大约10分钟后找到了答案,因为我不知道要搜索正确的关键字)
Here's the problem, you include multiple assemblies and add 'using namespaceX' at the top of your code file.
Now you want to create a class or use a symbol which is defined in multiple namespaces,
e.g. System.Windows.Controls.Image
& System.Drawing.Image
Now unless you use the fully qualified name, there will be a crib/build error due to ambiguity inspite of the right 'using' declarations at the top. What is the way out here?
(Another knowledge base post.. I found the answer after about 10 minutes of searching because I didn't know the right keyword to search for)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用别名
C# using 指令
Use alias
C# using directive
此页面有关于命名空间和使用语句的非常好的文章:
http://www.blackwasp。 co.uk/Namespaces.aspx
您想阅读有关“创建别名”的部分,该部分允许您为一个或两个名称空间创建别名,并像这样引用它们:
This page has a very good writeup on namespaces and the using-statement:
http://www.blackwasp.co.uk/Namespaces.aspx
You want to read the part about "Creating Aliases" that will allow you to make an alias for one or both of the name spaces and reference them with that like this: