Performs the specified on each element of the enumerable. - CSharp System.Collections.Generic

CSharp examples for System.Collections.Generic:IEnumerable

Description

Performs the specified on each element of the enumerable.

Demo Code


using System.Text;
using System.Linq;
using System.Collections.Generic;
using System.Collections;
using System;/*from  w  w w. jav a2  s  .c  om*/

public class Main{
        /// <summary>
      /// Performs the specified <paramref name="action"/> on each element of the <paramref name="enumerable"/>.
      /// 
      /// </summary>
      /// <typeparam name="T">The type contained in the <paramref name="enumerable"/>.
      ///             </typeparam><param name="enumerable"/><param name="action"/>
      public static void ForEach<T>(this IEnumerable<T> enumerable, Action<T> action)
      {
         foreach (T obj in enumerable)
            action(obj);
      }
        /// <summary>
      /// Performs the specified <paramref name="action"/> on each element of the <paramref name="enumerable"/>.
      /// 
      /// </summary>
      /// <param name="enumerable">An enumerable instance.
      ///             </param><param name="action"/>
      public static void ForEach<T>(this IEnumerable enumerable, Action<T> action)
      {
         foreach (T obj in enumerable)
            action(obj);
      }
        /// <summary>
      /// Performs the specified <paramref name="action"/> on each element of the <paramref name="enumerable"/>.
      /// 
      /// </summary>
      /// <param name="enumerable">An enumerable instance.
      ///             </param><param name="action"/>
      public static void ForEach(this IEnumerable enumerable, Action<object> action)
      {
         foreach (object obj in enumerable)
            action(obj);
      }
}

Related Tutorials