码迷,mamicode.com
首页 > 其他好文 > 详细

小扩展大用处,自己扩展一个ForeachRead吧

时间:2014-12-11 00:15:16      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   使用   sp   for   on   

是否用过IList的扩展方法 Foreach,而郁闷IEnumerable没有这个扩展?(没用过??用用吧,真的很方便,可以少好几行呢!!)

是否为了有一个索引而不得不用 for 而不能用 foreach??

那这个扩展方法适合你:

public static void ForEachRead<T>(this IEnumerable<T> dx,Action<int,T> act)
{
      int i = 0;
      foreach (var item in dx)
      {
          act(i, item);
          i++;
      }
}

完了??对,完了。

这么个玩意有啥用呢??

对于要使用索引的操作以前只能:

List<int> arr = new List<int>() { 1,2,3,4,5,6,7,8,9,10};
var query=arr.Where(x => x > 5).ToList();
for (int i = 0; i < query.Count; i++)
{
     Console.WriteLine(string.Format("{0}:{1}",i,query[i]));
}
Console.ReadKey();

现在可以:

List<int> arr = new List<int>() { 1,2,3,4,5,6,7,8,9,10};
arr.Where(x => x > 5).ForEachRead((i, o) => {Console.WriteLine(string.Format("{0}:{1}", i, o));});
Console.ReadKey();

是不是很像jquery!!!

很简单的东西,看别人没发过,过来抛砖引玉吧。

本文来自 博-客-园

小扩展大用处,自己扩展一个ForeachRead吧

标签:style   blog   io   ar   color   使用   sp   for   on   

原文地址:http://www.cnblogs.com/fej121/p/4156566.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!