查看变量时,Visual Studio调试器崩溃
以下是我在VS Debugger崩溃之前得到的内容。 当我没有调试器查看它时,它会在set函数中抛出一个segfault。 调试器整天都在工作,也在这个相同的东西上。 有任何想法吗?
我正在查看的对象:
[DataContract]
public class SvnUrl
{
public string _type;
public string _acronym;
public string _location;
public string _url;
public int _foundstatus;
[DataMember]
public string type
{
get { return _type; }
set { _type = value; }
}
[DataMember]
public string acronym
{
get { return _acronym; }
set { _acronym = value; }
}
[DataMember]
public string location
{
get { return _location; }
set { _location = value; }
}
[DataMember]
public string url
{
get { return _url; }
set { _url = value; }
}
[DataMember]
public int foundstatus
{
get { return _foundstatus; }
set { _foundstatus = value; }
}
}
你确定你输入了与你的代码完全相同的例子吗?你真的没有get { return location; }
get { return location; }
在该位置属性(注意缺失_
因此无限递归)?