Queryable.ElementAt 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
ElementAt<TSource>(IQueryable<TSource>, Index) |
傳回位於序列中指定索引處的項目。 |
ElementAt<TSource>(IQueryable<TSource>, Int32) |
傳回位於序列中指定索引處的項目。 |
ElementAt<TSource>(IQueryable<TSource>, Index)
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
傳回位於序列中指定索引處的項目。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static TSource ElementAt(System::Linq::IQueryable<TSource> ^ source, Index index);
public static TSource ElementAt<TSource> (this System.Linq.IQueryable<TSource> source, Index index);
static member ElementAt : System.Linq.IQueryable<'Source> * Index -> 'Source
<Extension()>
Public Function ElementAt(Of TSource) (source As IQueryable(Of TSource), index As Index) As TSource
類型參數
- TSource
source
項目的類型。
參數
- source
- IQueryable<TSource>
傳回項目的 IQueryable<T>。
- index
- Index
要擷取的專案索引,這是從開始或結尾。
傳回
序列中位於指定位置的專案 source
。
例外狀況
source
為 null
。
index
超出序列界限 source
。
適用於
ElementAt<TSource>(IQueryable<TSource>, Int32)
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
- 來源:
- Queryable.cs
傳回位於序列中指定索引處的項目。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static TSource ElementAt(System::Linq::IQueryable<TSource> ^ source, int index);
public static TSource ElementAt<TSource> (this System.Linq.IQueryable<TSource> source, int index);
static member ElementAt : System.Linq.IQueryable<'Source> * int -> 'Source
<Extension()>
Public Function ElementAt(Of TSource) (source As IQueryable(Of TSource), index As Integer) As TSource
類型參數
- TSource
source
項目的類型。
參數
- source
- IQueryable<TSource>
傳回項目的 IQueryable<T>。
- index
- Int32
要擷取的項目之以零為起始索引。
傳回
位於 source
中指定之位置的項目。
例外狀況
source
為 null
。
index
小於零。
範例
下列程式代碼範例示範如何使用 ElementAt<TSource>(IQueryable<TSource>, Int32) 來傳回序列中特定位置的專案。
string[] names = { "Hartono, Tommy", "Adams, Terry",
"Andersen, Henriette Thaulow",
"Hedlund, Magnus", "Ito, Shu" };
Random random = new Random(DateTime.Now.Millisecond);
string name =
names.AsQueryable().ElementAt(random.Next(0, names.Length));
Console.WriteLine("The name chosen at random is '{0}'.", name);
/*
This code produces the following sample output.
Yours may be different due to the use of Random.
The name chosen at random is 'Ito, Shu'.
*/
Dim names() As String = {"Hartono, Tommy", "Adams, Terry", _
"Andersen, Henriette Thaulow", _
"Hedlund, Magnus", "Ito, Shu"}
Dim rand As New Random(DateTime.Now.Millisecond)
Dim name As String = _
names.AsQueryable().ElementAt(rand.Next(0, names.Length))
MsgBox(String.Format("The name chosen at random is '{0}'.", name))
' This code produces the following sample output.
' Yours may be different due to the use of Random.
'
' The name chosen at random is 'Ito, Shu'.
備註
方法 ElementAt<TSource>(IQueryable<TSource>, Int32) 會產生 , MethodCallExpression 表示 ElementAt<TSource>(IQueryable<TSource>, Int32) 呼叫本身做為建構的泛型方法。 然後,它會將 傳遞MethodCallExpression至 Execute<TResult>(Expression) 參數的 屬性所Provider表示的 source
方法IQueryProvider。
執行表示呼叫 ElementAt<TSource>(IQueryable<TSource>, Int32) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的 source
實作。 預期的行為是它會傳回 位於 中source
位置index
的專案。