英語で読む

次の方法で共有


Enumerable.FirstOrDefault メソッド

定義

シーケンスの最初の要素を返します。要素が見つからない場合は既定値を返します。

オーバーロード

FirstOrDefault<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>, TSource)

条件を満たすシーケンスの最初の要素を返します。そのような要素が見つからない場合は、指定された既定値を返します。

FirstOrDefault<TSource>(IEnumerable<TSource>, TSource)

シーケンスの最初の要素を返します。シーケンスに要素が含まれない場合は、指定された既定値を返します。

FirstOrDefault<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>)

条件を満たす、シーケンスの最初の要素を返します。このような要素が見つからない場合は既定値を返します。

FirstOrDefault<TSource>(IEnumerable<TSource>)

シーケンスの最初の要素を返します。シーケンスに要素が含まれていない場合は既定値を返します。

FirstOrDefault<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>, TSource)

ソース:
First.cs
ソース:
First.cs
ソース:
First.cs

条件を満たすシーケンスの最初の要素を返します。そのような要素が見つからない場合は、指定された既定値を返します。

C#
public static TSource FirstOrDefault<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,bool> predicate, TSource defaultValue);

型パラメーター

TSource

source の要素の型。

パラメーター

source
IEnumerable<TSource>

返される要素が含まれる IEnumerable<T>

predicate
Func<TSource,Boolean>

各要素が条件を満たしているかどうかをテストする関数。

defaultValue
TSource

シーケンスが空の場合に返される既定値。

戻り値

TSource

defaultValueが空の場合、または でpredicate指定されたテストに合格する要素がない場合sourceは 。それ以外の場合は、 でpredicate指定されたテストに合格する 内sourceの最初の要素。

例外

source または predicatenull です。

適用対象

.NET 9 およびその他のバージョン
製品 バージョン
.NET 6, 7, 8, 9

FirstOrDefault<TSource>(IEnumerable<TSource>, TSource)

ソース:
First.cs
ソース:
First.cs
ソース:
First.cs

シーケンスの最初の要素を返します。シーケンスに要素が含まれない場合は、指定された既定値を返します。

C#
public static TSource FirstOrDefault<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, TSource defaultValue);

型パラメーター

TSource

source の要素の型。

パラメーター

source
IEnumerable<TSource>

最初の要素を返す IEnumerable<T>

defaultValue
TSource

シーケンスが空の場合に返される既定値。

戻り値

TSource

defaultValue が空の場合 source は 。それ以外の場合は、 の最初の source要素。

例外

sourcenull です。

適用対象

.NET 9 およびその他のバージョン
製品 バージョン
.NET 6, 7, 8, 9

FirstOrDefault<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>)

ソース:
First.cs
ソース:
First.cs
ソース:
First.cs

条件を満たす、シーケンスの最初の要素を返します。このような要素が見つからない場合は既定値を返します。

C#
public static TSource FirstOrDefault<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,bool> predicate);
C#
public static TSource? FirstOrDefault<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,bool> predicate);

型パラメーター

TSource

source の要素の型。

パラメーター

source
IEnumerable<TSource>

返される要素が含まれる IEnumerable<T>

predicate
Func<TSource,Boolean>

各要素が条件を満たしているかどうかをテストする関数。

戻り値

TSource

TSource が空の場合または source で指定されたテストに合格する要素がない場合は default(predicate)。それ以外の場合は、source で指定されたテストに合格する、predicate の最初の要素。

例外

source または predicatenull です。

次のコード例では、述語を渡して を使用 FirstOrDefault<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) する方法を示します。 メソッドの 2 番目の呼び出しでは、条件を満たす要素が配列内にありません。

C#
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.
*/

注釈

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

適用対象

.NET 9 およびその他のバージョン
製品 バージョン
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

FirstOrDefault<TSource>(IEnumerable<TSource>)

ソース:
First.cs
ソース:
First.cs
ソース:
First.cs

シーケンスの最初の要素を返します。シーケンスに要素が含まれていない場合は既定値を返します。

C#
public static TSource FirstOrDefault<TSource> (this System.Collections.Generic.IEnumerable<TSource> source);
C#
public static TSource? FirstOrDefault<TSource> (this System.Collections.Generic.IEnumerable<TSource> source);

型パラメーター

TSource

source の要素の型。

パラメーター

source
IEnumerable<TSource>

最初の要素を返す IEnumerable<T>

戻り値

TSource

TSource が空の場合は default(source)。それ以外の場合は source の最初の要素。

例外

sourcenullです。

次のコード例は、空の配列で を使用 FirstOrDefault<TSource>(IEnumerable<TSource>) する方法を示しています。

C#
int[] numbers = { };
int first = numbers.FirstOrDefault();
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 を指定することによって取得されます。

C#
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
*/

注釈

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

メソッドには FirstOrDefault 、既定値を指定する方法はありません。 以外 default(TSource)の既定値を指定する場合は、「例」セクションの DefaultIfEmpty<TSource>(IEnumerable<TSource>, TSource) 説明に従って メソッドを使用します。

適用対象

.NET 9 およびその他のバージョン
製品 バージョン
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0