有人可以幫我添加下面代碼段中評論的if語句嗎?如何在LINQ語句中添加if語句
Dictionary<string,int> toReturn;
List<string> lookup = GetIt();
foreach (string test in lookup)
{
var testDictionary = ToGroupDictionary(test);
testDictionary.Keys.ToList().ForEach(k =>
//if(true){add toReturn list}
);
}
你會更好只使用一個'foreach'環 - ['.ForEach '實際上是一個棄用的構造](http://stackoverflow.com/questions/10299458/is-the-listt-foreach-extension-method-gone)。 –