ReSharper“可能的 NullReferenceException”文件信息错误?

发布于 2024-12-07 00:35:38 字数 309 浏览 0 评论 0原文

我刚刚开始使用 ReSharper,我试图找出它为什么认为这段代码是错误的。

var file = new FileInfo("foobar");
return file.Directory.FullName;

它将 file.Directory 突出显示为“可能的 System.NullReferenceException”。我不确定这是怎么可能的,因为文件对象永远不会为空,而且我无法弄清楚从 FileInfo 对象返回的 DirectoryInfo 对象如何可能是空的无效的。

I just started using ReSharper and I'm trying to identify why it thinks this code is wrong.

var file = new FileInfo("foobar");
return file.Directory.FullName;

It highlights file.Directory as a "Possible System.NullReferenceException". I'm not sure how this is possible because the file object can never be null and I can't figure out how the DirectoryInfo object returned from the FileInfo object could ever be null.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

Spring初心 2024-12-14 00:35:38

Directory 属性确实可以为 null。属性的实现大致是

public DirectoryInfo Directory {
    get {
        string directoryName = this.DirectoryName;
        if (directoryName == null) {
            return null;
        }
        return new DirectoryInfo(directoryName);
    }
}

肯定可以返回null。这是一个具体的例子

var x = new FileInfo(@"c:\");
if (x.Directory == null) {
  Console.WriteLine("Directory is null");  // Will print
}

The Directory property can indeed be null. The implementation of the property is roughly

public DirectoryInfo Directory {
    get {
        string directoryName = this.DirectoryName;
        if (directoryName == null) {
            return null;
        }
        return new DirectoryInfo(directoryName);
    }
}

It can definitely return null. Here is a concrete example

var x = new FileInfo(@"c:\");
if (x.Directory == null) {
  Console.WriteLine("Directory is null");  // Will print
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文