Mercurial > silverbladetech
view Chronosv2/source/Extensions/EnumerableExtensions.cs @ 12:6a0449185449
SCC changed from TFS to HG
author | stevenh7776 stevenhollidge@hotmail.com |
---|---|
date | Tue, 21 Feb 2012 17:47:35 +0700 |
parents | 443821e55f06 |
children |
line wrap: on
line source
using System; using System.Collections.Generic; namespace Chronos.Extensions { /// <summary> /// Extension methods for all kinds of (typed) enumerable data (Array, List, ...) /// </summary> public static class EnumerableExtensions { #region · Extensions · /// <summary> /// Converts all items of a list and returns them as enumerable. /// </summary> /// <typeparam name="TSource">The source data type</typeparam> /// <typeparam name="TTarget">The target data type</typeparam> /// <param name="source">The source data.</param> /// <returns>The converted data</returns> /// <example> /// /// var values = new[] { "1", "2", "3" }; /// values.ConvertList<string, int>().ForEach(Console.WriteLine); /// /// </example> public static IEnumerable<TTarget> ConvertList<TSource, TTarget>(this IEnumerable<TSource> source) { foreach (var value in source) { yield return value.ConvertTo<TTarget>(); } } /// <summary> /// Performs an action for each item in the enumerable /// </summary> /// <typeparam name="T">The enumerable data type</typeparam> /// <param name="values">The data values.</param> /// <param name="action">The action to be performed.</param> /// <example> /// /// var values = new[] { "1", "2", "3" }; /// values.ConvertList<string, int>().ForEach(Console.WriteLine); /// /// </example> /// <remarks>This method was intended to return the passed values to provide method chaining. Howver due to defered execution the compiler would actually never run the entire code at all.</remarks> public static void ForEach<T>(this IEnumerable<T> values, Action<T> action) { foreach (var value in values) { action(value); } } #endregion } }