我得到以下异常(在荷兰语中,英文翻译如下文本),这会打破我的调试器,当我按’OK’它会停止调试会话并关闭应用程序:
翻译文字:
--------------------------- LerTemperaturaWPF.vshost.exe - Application Error --------------------------- INTERNAL ERROR: Unhandled exception in Debugger::HandleIPCEvent. Event ID=0x246. Exception code=0xc0000005,Eip=0x68fbaeca. Process ID=0x1094 (4244),Thread ID=0x10a4 (4260). --------------------------- OK ---------------------------
如果调试器第一次中断在某段代码中,则会发生这种情况:
private void PropertyChanged(object sender,System.ComponentModel.PropertyChangedEventArgs e) { // Set value of property,only when the long editor is selected (no optionlist item is selected) if (this.Editor.SelectedItem != null) { if (this.Editor.SelectedItem as OptionForList == null) { this.Editor.SelectedValue = ((Management.Property)this.Editor.SelectedItem).Value; this.Editor.SelectedIndex = 0; } } }
当我将断点放在第二个if语句之前,在第二个if语句(我放在哪里)之前发生.这给我没有问题.
如果我确保调试器在此代码之前的第一个中断,并且在该代码之后,它将在该代码中触发断点,也没有问题.调试器必须在进入此代码之前已经中断.现在我不认为它与此代码有任何关系(90%确定).