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:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user