Enumerable.FirstOrDefault メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
シーケンスの最初の要素を返します。要素が見つからない場合は既定値を返します。
オーバーロード
| 名前 | 説明 |
|---|---|
| FirstOrDefault<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) |
条件を満たすシーケンスの最初の要素、またはそのような要素が見つからない場合は既定値を返します。 |
| FirstOrDefault<TSource>(IEnumerable<TSource>) |
シーケンスの最初の要素を返します。シーケンスに要素が含まれている場合は既定値を返します。 |
FirstOrDefault<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>)
条件を満たすシーケンスの最初の要素、またはそのような要素が見つからない場合は既定値を返します。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static TSource FirstOrDefault(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, bool> ^ predicate);
public static TSource FirstOrDefault<TSource>(this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,bool> predicate);
static member FirstOrDefault : seq<'Source> * Func<'Source, bool> -> 'Source
<Extension()>
Public Function FirstOrDefault(Of TSource) (source As IEnumerable(Of TSource), predicate As Func(Of TSource, Boolean)) As TSource
型パラメーター
- TSource
sourceの要素の型。
パラメーター
- source
- IEnumerable<TSource>
要素を返す IEnumerable<T> 。
返品
default(TSource) sourceが空の場合、またはpredicateで指定されたテストに合格する要素がない場合は。それ以外の場合は、predicateで指定されたテストに合格するsourceの最初の要素。
例外
source または predicate が null。
例
次のコード例では、述語を渡して FirstOrDefault<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) を使用する方法を示します。 メソッドの 2 番目の呼び出しでは、条件を満たす要素が配列にありません。
string[] names = { "Hartono, Tommy", "Adams, Terry",
"Andersen, Henriette Thaulow",
"Hedlund, Magnus", "Ito, Shu" };
string firstLongName = names.FirstOrDefault(name => name.Length > 20);
Console.WriteLine("The first long name is '{0}'.", firstLongName);
string firstVeryLongName = names.FirstOrDefault(name => name.Length > 30);
Console.WriteLine(
"There is {0} name longer than 30 characters.",
string.IsNullOrEmpty(firstVeryLongName) ? "not a" : "a");
/*
This code produces the following output:
The first long name is 'Andersen, Henriette Thaulow'.
There is not a name longer than 30 characters.
*/
' Create an array of strings.
Dim names() As String =
{"Hartono, Tommy", "Adams, Terry", "Andersen, Henriette Thaulow", "Hedlund, Magnus", "Ito, Shu"}
' Select the first string in the array whose length is greater than 20.
Dim firstLongName As String =
names.FirstOrDefault(Function(name) name.Length > 20)
' Display the output.
Console.WriteLine($"The first long name is {firstLongName}")
' Select the first string in the array whose length is greater than 30,
' or a default value if there are no such strings in the array.
Dim firstVeryLongName As String =
names.FirstOrDefault(Function(name) name.Length > 30)
Dim text As String = IIf(String.IsNullOrEmpty(firstVeryLongName), "not a", "a")
Console.WriteLine($"There is {text} name longer than 30 characters.")
' This code produces the following output:
'
' The first long name is Andersen, Henriette Thaulow
'
' There is not a name longer than 30 characters.
注釈
参照型と null 許容型の既定値は null。
適用対象
FirstOrDefault<TSource>(IEnumerable<TSource>)
シーケンスの最初の要素を返します。シーケンスに要素が含まれている場合は既定値を返します。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static TSource FirstOrDefault(System::Collections::Generic::IEnumerable<TSource> ^ source);
public static TSource FirstOrDefault<TSource>(this System.Collections.Generic.IEnumerable<TSource> source);
static member FirstOrDefault : seq<'Source> -> 'Source
<Extension()>
Public Function FirstOrDefault(Of TSource) (source As IEnumerable(Of TSource)) As TSource
型パラメーター
- TSource
sourceの要素の型。
パラメーター
- source
- IEnumerable<TSource>
最初の要素を返す IEnumerable<T> 。
返品
default
sourceが空の場合は (TSource)、それ以外の場合はsourceの最初の要素。
例外
source は nullです。
例
次のコード例は、空の配列で FirstOrDefault<TSource>(IEnumerable<TSource>) を使用する方法を示しています。
int[] numbers = { };
int first = numbers.FirstOrDefault();
Console.WriteLine(first);
/*
This code produces the following output:
0
*/
' Create an empty array.
Dim numbers() As Integer = {}
' Select the first element in the array, or a default value
' if there are not elements in the array.
Dim first As Integer = numbers.FirstOrDefault()
' Display the output.
Console.WriteLine(first)
' This code produces the following output:
'
' 0
default(TSource)の値が、コレクションに要素が含まれていない場合に使用する既定値ではない場合があります。 不要な既定値の結果を確認し、必要に応じて変更する代わりに、 DefaultIfEmpty<TSource>(IEnumerable<TSource>, TSource) メソッドを使用して、コレクションが空の場合に使用する既定値を指定できます。 次に、 First<TSource>(IEnumerable<TSource>) を呼び出して、最初の要素を取得します。 次のコード例では、数値の月のコレクションが空の場合、両方の手法を使用して既定値 1 を取得します。 整数の既定値は 0 で、どの月にも対応していないため、既定値は 1 として指定する必要があります。 クエリの実行が完了した後、最初の結果変数で不要な既定値がチェックされます。 2 番目の結果変数は、 DefaultIfEmpty<TSource>(IEnumerable<TSource>, TSource) を使用して既定値 1 を指定することによって取得されます。
List<int> months = new List<int> { };
// Setting the default value to 1 after the query.
int firstMonth1 = months.FirstOrDefault();
if (firstMonth1 == 0)
{
firstMonth1 = 1;
}
Console.WriteLine("The value of the firstMonth1 variable is {0}", firstMonth1);
// Setting the default value to 1 by using DefaultIfEmpty() in the query.
int firstMonth2 = months.DefaultIfEmpty(1).First();
Console.WriteLine("The value of the firstMonth2 variable is {0}", firstMonth2);
/*
This code produces the following output:
The value of the firstMonth1 variable is 1
The value of the firstMonth2 variable is 1
*/
Dim months As New List(Of Integer)(New Integer() {})
' Setting the default value to 1 after the query.
Dim firstMonth1 As Integer = months.FirstOrDefault()
If firstMonth1 = 0 Then
firstMonth1 = 1
End If
Console.WriteLine($"The value of the firstMonth1 variable is {firstMonth1}")
' Setting the default value to 1 by using DefaultIfEmpty() in the query.
Dim firstMonth2 As Integer = months.DefaultIfEmpty(1).First()
Console.WriteLine($"The value of the firstMonth2 variable is {firstMonth2}")
' This code produces the following output:
'
' The value of the firstMonth1 variable is 1
' The value of the firstMonth2 variable is 1
注釈
参照型と null 許容型の既定値は null。
FirstOrDefault メソッドには、既定値を指定する方法はありません。
default(TSource)以外の既定値を指定する場合は、「例」セクションの説明に従ってDefaultIfEmpty<TSource>(IEnumerable<TSource>, TSource)メソッドを使用します。