嘿,我有以下这样的代码
public object RetrieveItemRun(int item)
{
if (dictionary.ContainsKey(item))
{
MessageBox.Show("Retrieving" + item.ToString());
}
return dictionary[item];
}
尝试获取 0 的键时它总是崩溃,消息框确实显示,因此 ContainsKey 方法为真,但是当我尝试从键中检索值时它崩溃说:
“给定的键不在字典中”