HashSet<T>.SymmetricExceptWith(IEnumerable<T>) Método

Definición

Modifica el objeto HashSet<T> actual para que contenga únicamente los elementos que están presentes en ese objeto o en la colección especificada, pero no en ambos.

C#
public void SymmetricExceptWith (System.Collections.Generic.IEnumerable<T> other);
C#
[System.Security.SecurityCritical]
public void SymmetricExceptWith (System.Collections.Generic.IEnumerable<T> other);

Parámetros

other
IEnumerable<T>

Colección que se va a comparar con el objeto HashSet<T> actual.

Implementaciones

Atributos

Excepciones

other es null.

Ejemplos

En el ejemplo siguiente se crean dos HashSet<T> colecciones con conjuntos de datos superpuestos. A continuación, se modifica el conjunto que contiene los valores inferiores, mediante el SymmetricExceptWith método , para contener solo los valores que no están presentes en ambos conjuntos.

C#
HashSet<int> lowNumbers = new HashSet<int>();
HashSet<int> highNumbers = new HashSet<int>();

for (int i = 0; i < 6; i++)
{
    lowNumbers.Add(i);
}

for (int i = 3; i < 10; i++)
{
    highNumbers.Add(i);
}

Console.Write("lowNumbers contains {0} elements: ", lowNumbers.Count);
DisplaySet(lowNumbers);

Console.Write("highNumbers contains {0} elements: ", highNumbers.Count);
DisplaySet(highNumbers);

Console.WriteLine("lowNumbers SymmetricExceptWith highNumbers...");
lowNumbers.SymmetricExceptWith(highNumbers);

Console.Write("lowNumbers contains {0} elements: ", lowNumbers.Count);
DisplaySet(lowNumbers);

void DisplaySet(HashSet<int> set)
{
    Console.Write("{");
    foreach (int i in set)
    {
        Console.Write(" {0}", i);
    }
    Console.WriteLine(" }");
}

/* This example provides output similar to the following:
* lowNumbers contains 6 elements: { 0 1 2 3 4 5 }
* highNumbers contains 7 elements: { 3 4 5 6 7 8 9 }
* lowNumbers SymmetricExceptWith highNumbers...
* lowNumbers contains 7 elements: { 0 1 2 8 7 6 9 }
*/

Comentarios

Si el other parámetro es una HashSet<T> colección con el mismo comparador de igualdad que el objeto actual HashSet<T> , este método es una operación O(n). De lo contrario, este método es una operación O(n + m), donde n es el número de elementos de other y m es Count.

Se aplica a

Producto Versiones
.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