用的foreach指数 [英] foreach with index

查看:138
本文介绍了用的foreach指数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有一个C#相当于Python的枚举()和Ruby的 each_with_index

Is there a C# equivalent of Python's enumerate() and Ruby's each_with_index?

推荐答案

我一直围绕这此扩展方法:

I keep this extension method around for this:

public static void Each<T>( this IEnumerable<T> ie, Action<T, int> action )
{
    var i = 0;
    foreach ( var e in ie ) action( e, i++ );
}

和使用它像这样:

var strings = new List<string>();
strings.Each( ( str, n ) =>
{
    // hooray
} );

这篇关于用的foreach指数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆