Since C# is so flexible (due in part to its interpreted nature) I was wondering whether the following feature is readily available. Otherwise I will just roll my own.
I have a List<MyModel>
which would be much easier/convenient to traverse with a nested loop:
for (col = 1 to lastCol)
for (row = 1 to lastRow)
scrutinize(row, col);
Addition: Perhaps I should use foreach
across the columns?