如果语句检查是否为空,则返回错误

时间:2018-11-15 22:31:45

标签: c# if-statement null

我有一个if语句,其中包含对null的检查:

    if (_reportDocument.LastSection.LastTable != null)
    {

    }

对于该特定行,我得到一个NullReferenceException。

_reportDocument.LastSection.LastTable!=空

我可以看到_reportDocument,LastSection不为空。尝试检查LastTable是否为null时,为什么仍然会出现此错误?

有人知道原因吗?

0 个答案:

没有答案