我有一个if语句,其中包含对null的检查:
if (_reportDocument.LastSection.LastTable != null)
{
}
对于该特定行,我得到一个NullReferenceException。
_reportDocument.LastSection.LastTable!=空
我可以看到_reportDocument,LastSection不为空。尝试检查LastTable是否为null时,为什么仍然会出现此错误?
有人知道原因吗?