ImmutableArrayExtensions.ElementAt<T> 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回位於陣列中指定索引處的元素。
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
在指定之索引處的項目。