我不知道爲什麼我不能處理這個異常是由代碼引起的:無法處理StackOverflowException C#
private void checkedListBox1_SelectedIndexChanged(object sender, EventArgs e)
{
try
{
for (int i = 0; i < checkedListBox1.Items.Count; i++)
{
int id = int.Parse(((DataRowView)checkedListBox1.Items[i])[0].ToString());
bool check = checkedListBox1.GetItemChecked(i);
DataRow[] dr = dt.Select("id = " + id.ToString());
dr[0][2] = check;
}
}
catch (StackOverflowException) { }
}
Image: Unhandled StackOverflowException
'StackOverflowException'是您無法捕捉的異常之一。 –