ImmutableArrayExtensions.ElementAt<T> 方法

定义

返回数组中指定索引处的元素。

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static T ElementAt(System::Collections::Immutable::ImmutableArray<T> immutableArray, int index);
public static T ElementAt<T> (this System.Collections.Immutable.ImmutableArray<T> immutableArray, int index);
static member ElementAt : System.Collections.Immutable.ImmutableArray<'T> * int -> 'T
<Extension()>
Public Function ElementAt(Of T) (immutableArray As ImmutableArray(Of T), index As Integer) As T

类型参数

T

集合包含的元素的类型。

参数

immutableArray
ImmutableArray<T>

要在其中查找元素的数组。

index
Int32

要检索的元素的索引。

返回

T

指定索引处的项。

适用于