Enumerable.SingleOrDefault<TSource> Method (IEnumerable<TSource>)

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Returns the only element of a sequence, or a default value if the sequence is empty; this method throws an exception if there is more than one element in the sequence.

Namespace:  System.Linq
Assembly:  System.Core (in System.Core.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function SingleOrDefault(Of TSource) ( _
    source As IEnumerable(Of TSource) _
) As TSource
public static TSource SingleOrDefault<TSource>(
    this IEnumerable<TSource> source
)

Type Parameters

  • TSource
    The type of the elements of source.

Parameters

Return Value

Type: TSource
The single element of the input sequence, or default(TSource) if the sequence contains no elements.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerable<TSource>. When you use instance method syntax to call this method, omit the first parameter.

Exceptions

Exception Condition
ArgumentNullException

source is nulla null reference (Nothing in Visual Basic).

InvalidOperationException

The input sequence contains more than one element.

Remarks

The default value for reference and nullable types is nulla null reference (Nothing in Visual Basic).

The SingleOrDefault method does not provide a way to specify a default value. If you want to specify a default value other than default(TSource), use the DefaultIfEmpty<TSource>(IEnumerable<TSource>, TSource) method as described in the Example section.

Examples

The following code example demonstrates how to use SingleOrDefault<TSource>(IEnumerable<TSource>) to select the only element of an array.

' Create an array that contains one item.
Dim fruits1() As String = {"orange"}

' Get the single item in the array or else a default value.
Dim result As String = fruits1.SingleOrDefault()

' Display the result.
outputBlock.Text &= "First array: " & result & vbCrLf
      string[] fruits1 = { "orange" };

      string fruit1 = fruits1.SingleOrDefault();

      outputBlock.Text += fruit1 + "\n";

      /*
       This code produces the following output:

       orange
      */

The following code example demonstrates that SingleOrDefault<TSource>(IEnumerable<TSource>) returns a default value when the sequence does not contain exactly one element.

      ' Create an empty array.
      Dim fruits2() As String = {}

      result = String.Empty

      ' Get the single item in the array or else a default value.
      result = fruits2.SingleOrDefault()

      ' Display the result.
      Dim output As String = _
          IIf(String.IsNullOrEmpty(result), "No single item found", result)
      outputBlock.Text &= "Second array: " & output & vbCrLf

      ' This code produces the following output:
      '
      ' First array: orange
      ' Second array: No single item found

      string[] fruits2 = { };

      string fruit2 = fruits2.SingleOrDefault();

      outputBlock.Text +=
          String.IsNullOrEmpty(fruit2) ? "No such string!" : fruit2 + "\n";

      /*
       This code produces the following output:

       No such string!
      */

Sometimes the value of default(TSource) is not the default value that you want to use if the collection contains no elements. Instead of checking the result for the unwanted default value and then changing it if necessary, you can use the DefaultIfEmpty<TSource>(IEnumerable<TSource>, TSource) method to specify the default value that you want to use if the collection is empty. Then, call Single<TSource>(IEnumerable<TSource>) to obtain the element. The following code example uses both techniques to obtain a default value of 1 if a collection of page numbers is empty. Because the default value for an integer is 0, which is not usually a valid page number, the default value must be specified as 1 instead. The first result variable is checked for the unwanted default value after the query has finished executing. The second result variable is obtained by using DefaultIfEmpty<TSource>(IEnumerable<TSource>, TSource) to specify a default value of 1.

      Dim pageNumbers() As Integer = {}

      ' Setting the default value to 1 after the query.
      Dim pageNumber1 As Integer = pageNumbers.SingleOrDefault()
      If pageNumber1 = 0 Then
         pageNumber1 = 1
      End If
      outputBlock.Text &= String.Format("The value of the pageNumber1 variable is {0}", pageNumber1) & _
                          vbCrLf

      ' Setting the default value to 1 by using DefaultIfEmpty() in the query.
      Dim pageNumber2 As Integer = pageNumbers.DefaultIfEmpty(1).Single()
      outputBlock.Text &= String.Format("The value of the pageNumber2 variable is {0}", pageNumber2) & _
                          vbCrLf

      ' This code produces the following output:

      ' The value of the pageNumber1 variable is 1
      ' The value of the pageNumber2 variable is 1

      int[] pageNumbers = { };

      // Setting the default value to 1 after the query.
      int pageNumber1 = pageNumbers.SingleOrDefault();
      if (pageNumber1 == 0)
      {
         pageNumber1 = 1;
      }
      outputBlock.Text += String.Format("The value of the pageNumber1 variable is {0}", pageNumber1) + "\n";

      // Setting the default value to 1 by using DefaultIfEmpty() in the query.
      int pageNumber2 = pageNumbers.DefaultIfEmpty(1).Single();
      outputBlock.Text += String.Format("The value of the pageNumber2 variable is {0}", pageNumber2) + "\n";

      /*
       This code produces the following output:

       The value of the pageNumber1 variable is 1
       The value of the pageNumber2 variable is 1
      */

Version Information

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Xbox 360, Windows Phone OS 7.0

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.