Enumerable.ElementAtOrDefault<TSource> メソッド

定義

シーケンス内の指定したインデックス位置にある要素を返します。インデックスが範囲外の場合は既定値を返します。

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

型パラメーター

TSource

sourceの要素の型。

パラメーター

source
IEnumerable<TSource>

要素を返す IEnumerable<T>

index
Int32

取得する要素の 0 から始まるインデックス。

返品

TSource

default(TSource) インデックスがソース シーケンスの境界外にある場合は 。それ以外の場合は、ソース シーケンス内の指定した位置にある要素。

例外

sourcenullです。

次のコード例は、 ElementAtOrDefaultの使用方法を示しています。 この例では、配列の境界外にあるインデックスを使用します。

string[] names =
    { "Hartono, Tommy", "Adams, Terry", "Andersen, Henriette Thaulow",
        "Hedlund, Magnus", "Ito, Shu" };

int index = 20;

string name = names.ElementAtOrDefault(index);

Console.WriteLine(
    "The name chosen at index {0} is '{1}'.",
    index,
    String.IsNullOrEmpty(name) ? "<no name at this index>" : name);

/*
 This code produces the following output:

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

Dim index As Integer = 20

' Get a string at an index that is out of range in the array.
Dim name As String = names.ElementAtOrDefault(index)

Dim text As String = If(String.IsNullOrEmpty(name), "[THERE IS NO NAME AT THIS INDEX]", name)

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

' This code produces the following output:
'
' The name chosen at index 20 is [THERE IS NO NAME AT THIS INDEX]

注釈

sourceの型がIList<T>を実装する場合、その実装は、指定したインデックス位置の要素を取得するために使用されます。 それ以外の場合、このメソッドは指定した要素を取得します。

参照型と null 許容型の既定値は null

適用対象