ImmutableArrayExtensions.ElementAtOrDefault<T> 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回位於序列中指定索引處的元素;如果索引超出範圍,則傳回預設值。
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static T ElementAtOrDefault(System::Collections::Immutable::ImmutableArray<T> immutableArray, int index);
public static T ElementAtOrDefault<T> (this System.Collections.Immutable.ImmutableArray<T> immutableArray, int index);
public static T? ElementAtOrDefault<T> (this System.Collections.Immutable.ImmutableArray<T> immutableArray, int index);
static member ElementAtOrDefault : System.Collections.Immutable.ImmutableArray<'T> * int -> 'T
<Extension()>
Public Function ElementAtOrDefault(Of T) (immutableArray As ImmutableArray(Of T), index As Integer) As T
類型參數
- T
集合所包含之元素的類型。
參數
- immutableArray
- ImmutableArray<T>
要在其中尋找元素的陣列。
- index
- Int32
要擷取之元素的索引。
傳回
T
位於指定索引處的項目,如果找不到索引則為預設值。