Enumerable.Empty<TResult> Metodo

Definizione

Restituisce un oggetto vuoto IEnumerable<T> che ha l'argomento di tipo specificato.

public:
generic <typename TResult>
 static System::Collections::Generic::IEnumerable<TResult> ^ Empty();
public static System.Collections.Generic.IEnumerable<TResult> Empty<TResult> ();
static member Empty : unit -> seq<'Result>
Public Function Empty(Of TResult) () As IEnumerable(Of TResult)

Parametri di tipo

TResult

Il tipo da assegnare al parametro di tipo del generico oggetto IEnumerable<T> restituito.

Restituisce

IEnumerable<TResult>

Oggetto vuoto IEnumerable<T> il cui argomento di tipo è TResult.

Esempio

Nell'esempio di codice seguente viene illustrato come usare Empty<TResult>() per generare un oggetto vuoto IEnumerable<T>.

IEnumerable<decimal> empty = Enumerable.Empty<decimal>();
' Create an empty sequence.
Dim empty As IEnumerable(Of Decimal) = Enumerable.Empty(Of Decimal)()

Nell'esempio di codice seguente viene illustrata una possibile applicazione del Empty<TResult>() metodo. Il Aggregate metodo viene applicato a una raccolta di matrici di stringhe. Gli elementi di ogni matrice nella raccolta vengono aggiunti all'oggetto risultante IEnumerable<T> solo se tale matrice contiene quattro o più elementi. Empty viene usato per generare il valore di inizializzazione perché Aggregate se nella raccolta non sono presenti quattro o più elementi, viene restituita solo la sequenza vuota.

string[] names1 = { "Hartono, Tommy" };
string[] names2 = { "Adams, Terry", "Andersen, Henriette Thaulow",
                      "Hedlund, Magnus", "Ito, Shu" };
string[] names3 = { "Solanki, Ajay", "Hoeing, Helge",
                      "Andersen, Henriette Thaulow",
                      "Potra, Cristina", "Iallo, Lucio" };

List<string[]> namesList =
    new List<string[]> { names1, names2, names3 };

// Only include arrays that have four or more elements
IEnumerable<string> allNames =
    namesList.Aggregate(Enumerable.Empty<string>(),
    (current, next) => next.Length > 3 ? current.Union(next) : current);

foreach (string name in allNames)
{
    Console.WriteLine(name);
}

/*
 This code produces the following output:

 Adams, Terry
 Andersen, Henriette Thaulow
 Hedlund, Magnus
 Ito, Shu
 Solanki, Ajay
 Hoeing, Helge
 Potra, Cristina
 Iallo, Lucio
*/
' Create three string arrays.
Dim names1() As String =
{"Hartono, Tommy"}
Dim names2() As String =
{"Adams, Terry", "Andersen, Henriette Thaulow", "Hedlund, Magnus", "Ito, Shu"}
Dim names3() As String =
{"Solanki, Ajay", "Hoeing, Helge", "Andersen, Henriette Thaulow", "Potra, Cristina", "Iallo, Lucio"}

' Create a List that contains 3 elements, where
' each element is an array of strings.
Dim namesList As New List(Of String())(New String()() {names1, names2, names3})

' Select arrays that have four or more elements and union
' them into one collection, using Empty() to generate the 
' empty collection for the seed value.
Dim allNames As IEnumerable(Of String) =
namesList.Aggregate(Enumerable.Empty(Of String)(),
                    Function(current, nextOne) _
                        IIf(nextOne.Length > 3, current.Union(nextOne), current))

Dim output As New System.Text.StringBuilder
For Each name As String In allNames
    output.AppendLine(name)
Next

' Display the output.
Console.WriteLine(output.ToString())

' This code produces the following output:
'
' Adams, Terry
' Andersen, Henriette Thaulow
' Hedlund, Magnus
' Ito, Shu
' Solanki, Ajay
' Hoeing, Helge
' Potra, Cristina
' Iallo, Lucio

Commenti

Il Empty<TResult>() metodo memorizza nella cache una sequenza vuota di tipo TResult. Quando l'oggetto restituito viene enumerato, non restituisce alcun elemento.

In alcuni casi, questo metodo è utile per passare una sequenza vuota a un metodo definito dall'utente che accetta un IEnumerable<T>oggetto . Può anche essere usato per generare un elemento neutrale per metodi come Union. Vedere la sezione Esempio per un esempio di questo uso di Empty<TResult>().

Si applica a