foreach (var distinctPart in distinctParts)
{
var list = partlist.Where(part =>
{
if (part.PartNumber.Equals(distinctPart))
return true;
return false;
}).Select(part =>
{
return part.Number;
}).Distinct();
int quantity = list.Count();
hwList[distinctPart] = quantity;
}
當我打開hwList字典我得到一個錯誤消息打開「禁用的,因爲以前的功能評價超時功能的評價。你必須繼續執行,以重新啓用功能的評價。」當我正在調試 可以幫助我的任何人功能評價超時時詞典在調試時
看看這個(http://social.msdn.microsoft.com/Forums/vstudio/en-US/728b9404-60b1-4951-99f8-70a5f75cba61/function-evaluation-disabled- because-a-previous-function -evaluation-timed-out-you-must-continue?forum = vsdebug) – Tigran