T
Tony Johansson
Hello!
I have this foreach loop construction. Assume I loop 2 times in this loop
then I want to compare
the collection that is created the first lap and stored in myTest to the
collection that is stored in the same myTest
in the the second lap. How can I do that ?
foreach (string wsrID in myworkSheetRowID)
{
var myTest = paramInitiatorer.Where(p => p.WorksheetRowID ==
wsrID).Select(p => new {p.Parameter, p.Value});
}
//Tony
I have this foreach loop construction. Assume I loop 2 times in this loop
then I want to compare
the collection that is created the first lap and stored in myTest to the
collection that is stored in the same myTest
in the the second lap. How can I do that ?
foreach (string wsrID in myworkSheetRowID)
{
var myTest = paramInitiatorer.Where(p => p.WorksheetRowID ==
wsrID).Select(p => new {p.Parameter, p.Value});
}
//Tony