Enumerable.Index<TSource>(IEnumerable<TSource>) 方法

定义

返回一个可枚举值,该枚举将元素的索引合并到元组中。

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Generic::IEnumerable<ValueTuple<int, TSource>> ^ Index(System::Collections::Generic::IEnumerable<TSource> ^ source);
public static System.Collections.Generic.IEnumerable<(int Index, TSource Item)> Index<TSource> (this System.Collections.Generic.IEnumerable<TSource> source);
static member Index : seq<'Source> -> seq<ValueTuple<int, 'Source>>
<Extension()>
Public Function Index(Of TSource) (source As IEnumerable(Of TSource)) As IEnumerable(Of ValueTuple(Of Integer, TSource))

类型参数

TSource

source的元素的类型。

参数

source
IEnumerable<TSource>

提供元素的源可枚举。

返回

例外

source null

适用于