You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.3 KiB
45 lines
1.3 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
|
|
namespace Znyc.Cloudcar.Admin.Commons.Extend
|
|
{
|
|
/// <summary>
|
|
/// IEnumerable��չ��
|
|
/// </summary>
|
|
[DebuggerStepThrough]
|
|
public static class ExtIEnumerable
|
|
{
|
|
/// <summary>
|
|
/// ѭ��IEnumerable
|
|
/// </summary>
|
|
/// <typeparam name="T"></typeparam>
|
|
/// <param name="source"></param>
|
|
/// <param name="fun"></param>
|
|
/// <returns></returns>
|
|
public static IEnumerable<T> Each<T>(this IEnumerable<T> source, Action<T> fun)
|
|
{
|
|
foreach (T item in source)
|
|
{
|
|
fun(item);
|
|
}
|
|
|
|
return source;
|
|
}
|
|
|
|
/// <summary>
|
|
/// IEnumerableתList
|
|
/// </summary>
|
|
/// <typeparam name="T"></typeparam>
|
|
/// <typeparam name="TResult"></typeparam>
|
|
/// <param name="source"></param>
|
|
/// <param name="fun"></param>
|
|
/// <returns></returns>
|
|
public static List<TResult> ToList<T, TResult>(this IEnumerable<T> source, Func<T, TResult> fun)
|
|
{
|
|
List<TResult> result = new List<TResult>();
|
|
source.Each(m => result.Add(fun(m)));
|
|
return result;
|
|
}
|
|
}
|
|
}
|