Enumerable.Single メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
シーケンスの 1 つの特定の要素を返します。
オーバーロード
Single<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) |
指定された条件を満たす、シーケンスの唯一の要素を返し、そのような要素が複数存在する場合は例外をスローします。 |
Single<TSource>(IEnumerable<TSource>) |
シーケンスの唯一の要素を返し、シーケンス内の要素が 1 つだけでない場合は例外をスローします。 |
Single<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>)
- ソース:
- Single.cs
- ソース:
- Single.cs
- ソース:
- Single.cs
指定された条件を満たす、シーケンスの唯一の要素を返し、そのような要素が複数存在する場合は例外をスローします。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static TSource Single(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, bool> ^ predicate);
public static TSource Single<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,bool> predicate);
static member Single : seq<'Source> * Func<'Source, bool> -> 'Source
<Extension()>
Public Function Single(Of TSource) (source As IEnumerable(Of TSource), predicate As Func(Of TSource, Boolean)) As TSource
型パラメーター
- TSource
source
の要素の型。
パラメーター
- source
- IEnumerable<TSource>
1 つの要素を返す IEnumerable<T>。
戻り値
条件を満たす、入力シーケンスの 1 つの要素。
例外
source
または predicate
が null
です。
predicate
の条件を満たす要素はありません。
- または -
predicate
の条件を満たす要素が複数あります。
- または -
ソース シーケンスが空です。
例
次のコード例では、 を使用 Single<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) して、条件を満たす配列の唯一の要素を選択する方法を示します。
string[] fruits = { "apple", "banana", "mango",
"orange", "passionfruit", "grape" };
string fruit1 = fruits.Single(fruit => fruit.Length > 10);
Console.WriteLine(fruit1);
/*
This code produces the following output:
passionfruit
*/
' Create an array of strings.
Dim fruits() As String =
{"apple", "banana", "mango", "orange", "passionfruit", "grape"}
' Get the single item in the array whose length is greater than 10.
Dim result As String =
fruits.Single(Function(fruit) fruit.Length > 10)
' Display the result.
Console.WriteLine($"First query: {result}")
次のコード例では、シーケンスに Single<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) 条件を満たす要素が 1 つだけ含まれていない場合に例外をスローする方法を示します。
string fruit2 = null;
try
{
fruit2 = fruits.Single(fruit => fruit.Length > 15);
}
catch (System.InvalidOperationException)
{
Console.WriteLine(@"The collection does not contain exactly
one element whose length is greater than 15.");
}
Console.WriteLine(fruit2);
// This code produces the following output:
//
// The collection does not contain exactly
// one element whose length is greater than 15.
result = String.Empty
' Try to get the single item in the array whose length is > 15.
Try
result = fruits.Single(Function(fruit) _
fruit.Length > 15)
Catch ex As System.InvalidOperationException
result = "There is not EXACTLY ONE element whose length is > 15."
End Try
' Display the result.
Console.WriteLine($"Second query: {result}")
' This code produces the following output:
'
' First query: passionfruit
' Second query: There is not EXACTLY ONE element whose length is > 15.
注釈
入力シーケンスに一致する要素が含まれない場合、メソッドは Single<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) 例外をスローします。 一致する要素が見つからないときに を返 null
すには、 を使用します SingleOrDefault。
適用対象
Single<TSource>(IEnumerable<TSource>)
- ソース:
- Single.cs
- ソース:
- Single.cs
- ソース:
- Single.cs
シーケンスの唯一の要素を返し、シーケンス内の要素が 1 つだけでない場合は例外をスローします。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static TSource Single(System::Collections::Generic::IEnumerable<TSource> ^ source);
public static TSource Single<TSource> (this System.Collections.Generic.IEnumerable<TSource> source);
static member Single : seq<'Source> -> 'Source
<Extension()>
Public Function Single(Of TSource) (source As IEnumerable(Of TSource)) As TSource
型パラメーター
- TSource
source
の要素の型。
パラメーター
- source
- IEnumerable<TSource>
1 つの要素を返す IEnumerable<T>。
戻り値
入力シーケンスの 1 つの要素。
例外
source
が null
です。
例
次のコード例では、 を使用 Single<TSource>(IEnumerable<TSource>) して配列の唯一の要素を選択する方法を示します。
string[] fruits1 = { "orange" };
string fruit1 = fruits1.Single();
Console.WriteLine(fruit1);
/*
This code produces the following output:
orange
*/
' Create an array that contains one item.
Dim fruits1() As String = {"orange"}
' Get the single item in the array.
Dim result As String = fruits1.Single()
' Display the result.
Console.WriteLine($"First query: {result}")
次のコード例では、シーケンスに Single<TSource>(IEnumerable<TSource>) 1 つの要素が含まれていない場合に例外をスローする方法を示します。
string[] fruits2 = { "orange", "apple" };
string fruit2 = null;
try
{
fruit2 = fruits2.Single();
}
catch (System.InvalidOperationException)
{
Console.WriteLine("The collection does not contain exactly one element.");
}
Console.WriteLine(fruit2);
/*
This code produces the following output:
The collection does not contain exactly one element.
*/
' Create an array that contains two items.
Dim fruits2() As String = {"orange", "apple"}
result = String.Empty
' Try to get the 'single' item in the array.
Try
result = fruits2.Single()
Catch ex As System.InvalidOperationException
result = "The collection does not contain exactly one element."
End Try
' Display the result.
Console.WriteLine($"Second query: {result}")
' This code produces the following output:
'
' First query: orange
' Second query: The collection does not contain exactly one element.
注釈
メソッドは Single<TSource>(IEnumerable<TSource>) 、入力シーケンスが空の場合に例外をスローします。 代わりに、入力シーケンスが空のときに を返 null
すには、 を使用 SingleOrDefaultします。
適用対象
.NET