查看变量时Visual Studio调试程序崩溃

时间:2011-11-10 00:57:37

标签: c# visual-studio

以下是我在VS Debugger崩溃前不久收到的内容。当我没有调试器查看它时,它会在set函数中抛出一个段错误。调试器一整天都在工作,同样的东西。有什么想法吗?

Visual Studio Debug Session

我正在观看的对象:

[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; }
    }
}

1 个答案:

答案 0 :(得分:3)

您确定键入的示例与您的代码相同,并且您在该位置属性中确实没有get { return location; }(请注意缺少_因此无限递归)?