Enumerable.Index<TSource>(IEnumerable<TSource>) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回一个可枚举值,该枚举将元素的索引合并到元组中。
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
。