为什么 VS 2012 将 Type 变量显示为 NullReferenceException,而它也显示为value = "Retailer"
.
我有一个新生儿,我正在努力限制睡眠,所以如果我在这里遗漏了一些明显的东西,我深表歉意。LoggedInUser.Employer 对象已被实例化,这条线在 1/2 的时间内工作正常。但随后它开始破裂。不确定这是否有帮助 - 需要睡觉......
private string _type;
public string Type
{
get { return _type; }
set
{
if (value != null)
{
TypeEnum = (Constants.BusinessType)Enum.Parse(typeof(Constants.BusinessType), value, true);
_type = value;
}
}
}
我开始怀疑这是否是一个跨线程问题...