Enumerable.ElementAt 方法

定義

多載

ElementAt<TSource>(IEnumerable<TSource>, Index)

傳回位於序列中指定索引處的項目。

ElementAt<TSource>(IEnumerable<TSource>, Int32)

傳回位於序列中指定索引處的項目。

ElementAt<TSource>(IEnumerable<TSource>, Index)

傳回位於序列中指定索引處的項目。

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static TSource ElementAt(System::Collections::Generic::IEnumerable<TSource> ^ source, Index index);
public static TSource ElementAt<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Index index);
static member ElementAt : seq<'Source> * Index -> 'Source
<Extension()>
Public Function ElementAt(Of TSource) (source As IEnumerable(Of TSource), index As Index) As TSource

類型參數

TSource

source 項目的類型。

參數

source
IEnumerable<TSource>

傳回項目的 IEnumerable<T>

index
Index

要擷取之專案的索引,從序列的開頭或結尾。

傳回

TSource

序列中位於指定位置的專案 source

例外狀況

sourcenull

index 超出序列界限 source

備註

如果 的 source 型別實作 IList<T> ,該實作會用來取得位於指定索引處的專案。 否則,這個方法會取得指定的專案。

如果 index 超出範圍,這個方法會擲回例外狀況。 若要改為在指定的索引超出範圍時傳回預設值,請使用 ElementAtOrDefault 方法。

適用於

ElementAt<TSource>(IEnumerable<TSource>, Int32)

傳回位於序列中指定索引處的項目。

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static TSource ElementAt(System::Collections::Generic::IEnumerable<TSource> ^ source, int index);
public static TSource ElementAt<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, int index);
static member ElementAt : seq<'Source> * int -> 'Source
<Extension()>
Public Function ElementAt(Of TSource) (source As IEnumerable(Of TSource), index As Integer) As TSource

類型參數

TSource

source 項目的類型。

參數

source
IEnumerable<TSource>

傳回項目的 IEnumerable<T>

index
Int32

要擷取的項目之以零為起始索引。

傳回

TSource

位於來源序列中指定位置的項目。

例外狀況

sourcenull

index 小於 0 或大於或等於 source 中的項目數目。

範例

下列程式碼範例示範如何使用 ElementAt 傳回位於特定位置的專案。

string[] names =
    { "Hartono, Tommy", "Adams, Terry", "Andersen, Henriette Thaulow",

        "Hedlund, Magnus", "Ito, Shu" };
Random random = new Random(DateTime.Now.Millisecond);

string name = names.ElementAt(random.Next(0, names.Length));

Console.WriteLine("The name chosen at random is '{0}'.", name);

/*
 This code produces output similar to the following:

 The name chosen at random is 'Ito, Shu'.
*/
' Create an array of strings.
Dim names() As String =
{"Hartono, Tommy", "Adams, Terry", "Andersen, Henriette Thaulow", "Hedlund, Magnus", "Ito, Shu"}

Dim random As Random = New Random(DateTime.Now.Millisecond)

' Get a string at a random index within the array.
Dim name As String = names.ElementAt(random.Next(0, names.Length))

' Display the output.
Console.WriteLine($"The name chosen at random is {name}")

' This code produces output similar to the following:
'
' The name chosen at random is Ito, Shu

備註

如果 的 source 型別實作 IList<T> ,該實作會用來取得位於指定索引處的專案。 否則,這個方法會取得指定的專案。

如果 index 超出範圍,這個方法會擲回例外狀況。 若要改為在指定的索引超出範圍時傳回預設值,請使用 ElementAtOrDefault 方法。

適用於