Enumerable.Index<TSource>(IEnumerable<TSource>) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回可列舉,將元素的索引併入 Tuple 中。
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
。