I actually think now its better since we are only parsing for meta information and will seperate the creation of the select expression.

This commit is contained in:
David Lebee
2018-04-02 14:09:57 -05:00
parent 4e6dda09b5
commit cffc978a6a
2 changed files with 115 additions and 18 deletions
@@ -69,8 +69,8 @@ namespace PoweredSoft.DynamicLinq
public static void ReversedForEach<T>(this List<T> list, ForEachDelegate<T> callback)
{
var reversed = list.Reversed();
reversed.ForEach(callback);
for (var i = list.Count - 1; i >= 0; i--)
callback(list[i], i);
}