我有一個bool變量和一個字典。 如果它是真的我必須增加我的字典價值1在指定的密鑰。增加指定密鑰字典的值
我的代碼:
private void Process(Person person)
{
isSendMailSuccessful = true;
if (isSendMailSuccessful)
{
MyDictionary.Where(i => i.Key == person.personID);
// I need to increase Value of that ID by 1
}
}
我知道這可能只是演示代碼,但isMailMailSuccessful將始終爲真,因此賦值true和後續if語句是多餘的。 – 2011-03-16 12:05:03