I have a requirement to iterate through a list, and conditionally set a data item against each item in the collection:
Using the standard foreach iterator, this is trivial:
//standard iteration
foreach (LogFileDataItem lfd in logFileData)
{
if (lfd.FileName.Equals(currentLine, StringComparison.OrdinalIgnoreCase))
{
lfd.SQLScriptExecuted = true;
}
}
But it got me into thinking that this was an ideal opportunity to explore LINQ, so I refactored to above to:
foreach (LogFileDataItem lfd in
from logFileDataItem in logFileData
where logFileDataItem.FileName.Equals(currentLine, StringComparison.OrdinalIgnoreCase)
select logFileDataItem)
{
lfd.SQLScriptExecuted = true;
}
Which, of course can be refactored into a lambda expression:
foreach (LogFileDataItem lfd in logFileData.Where(item => item.FileName.Equals(currentLine, StringComparison.OrdinalIgnoreCase))
.Select(item => item))
{
lfd.SQLScriptExecuted = true;
}
So my question really is really, how different are they? Do any offer a significant advantage over any other?
Select(item => item)in your 3rd piece of code (the one with the lambda) is totally useless ;) – digEmAll Jan 20 '11 at 9:43