ForEach for IEnumerables

    public static class FrameworkExtensions
    {
        // a map function
        public static void ForEach<T>(this IEnumerable<T> @enum, Action<T> mapFunction)
        {
            foreach (var item in @enum) mapFunction(item);
        }
    }

Example:

    var buttons = GetListOfButtons() as IEnumerable<Button>;

    // click all buttons
    buttons.ForEach(b => b.Click());

Note:

This is not like `Select` because `Select` _expects_ your function to return something as for transforming into another list.

ForEach simply allows you to execute something for each of the items without any transformations/data manipulation.

I made this so I can program in a more functional style and I was surprised that List<T> has a ForEach while IEnumerable<T> does not.