using System;
using System.Collections;
using System.Collections.Generic;
public static class IEnumeratorExtensions
{
///
/// Loops through all items in a a collection and applies an action to them
///
/// collection to loop through
/// Action to apply
public static void ForEach(this IEnumerable collection, Action action)
{
foreach (var item in collection)
action(item);
}
}