C#:属性/字段命名空间歧义
我收到编译错误,因为编译器认为 Path.Combine 引用我的字段,但我希望它引用类 System.IO.Path。 除了总是必须编写像 System.IO.Path.Combine() 这样的 FQN 之外,是否有更好的方法来处理这个问题?
using System.IO;
class Foo
{
public string Path;
void Bar(){ Path.Combine("",""); } // compile error here
}
I get compile error because the compiler thinks Path.Combine refers to my field, but I want it to refer to class System.IO.Path. Is there a good way to handle this other than always having to write the FQN like System.IO.Path.Combine()?
using System.IO;
class Foo
{
public string Path;
void Bar(){ Path.Combine("",""); } // compile error here
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以这样做:
然后在您的代码中:
You can do this:
Then in your code:
分离您的引用:
我强烈建议在该类中的任何位置使用 Path 时暗示 System.IO 命名空间,因为很难区分。 使用这个。 限定符和完整的命名空间使它们与众不同。
Seperate your references:
I'd strongly suggest implying the System.IO namespace when using Path anywhere inside that class, because it's very difficult to tell the difference. Using the this. qualifier and the full namespace makes them distinct.