次の方法で共有


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>

要素を提供するソース列挙可能。

戻り値

例外

sourcenullです。

適用対象