C#:属性/字段命名空间歧义

发布于 2024-07-25 08:38:24 字数 273 浏览 4 评论 0原文

我收到编译错误,因为编译器认为 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 技术交流群。

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

发布评论

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

评论(2

帝王念 2024-08-01 08:38:24

您可以这样做:

using IOPath = System.IO.Path;

然后在您的代码中:

class Foo
{
   public string Path;

   void Bar(){ IOPath.Combine("",""); } // compile error here
}

You can do this:

using IOPath = System.IO.Path;

Then in your code:

class Foo
{
   public string Path;

   void Bar(){ IOPath.Combine("",""); } // compile error here
}
纸短情长 2024-08-01 08:38:24

分离您的引用:

this.Path = System.IO.Path.PathFunction();

我强烈建议在该类中的任何位置使用 Path 时暗示 System.IO 命名空间,因为很难区分。 使用这个。 限定符和完整的命名空间使它们与众不同。

Seperate your references:

this.Path = System.IO.Path.PathFunction();

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.

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