"no way" 标志图标在 VS 监视面板中意味着什么?

what does the "no way" sign icon mean into VS watch pannel?

Visual Studio手表里面有一个瞄准镜图标,我看不懂, "no way" 符号有时出现在 属性 或字段图标上。 CF附截图。

我确实检查了 VS2015 图标的文档,但绝对没有看到这个 "no way" 标志: https://msdn.microsoft.com/en-us/library/y47ychfe.aspx

这是什么意思?

编辑: 我的 属性 声明为 public:

public virtual DateTime? MyProp1 { get; set; }

并且由于 virtual 关键字,该符号不存在,因为我在同一个 class 中还有其他自动属性也声明为 public virtual 并且间谍没有费心添加这个 "no way sign"。 例如:

public virtual MyType MyProp2{ get; set; }

我明白了! 这显然仅在 属性 可为空时发生

public DateTime? MyProp1 { get; set; } //there will be a "no way icon" when the property is instanciated
public DateTime MyProp2 { get; set; } //no "no way icon"

仍然不知道为什么原始 post...

中的 MS 文档 link 中没有列出此图标