Un HashSet es una colección desordenada de elementos únicos . Viene bajo el espacio de nombres System.Collections.Generic . Se utiliza en una situación en la que queremos evitar que se inserten duplicados en la colección. En cuanto al rendimiento, es mejor en comparación con la lista. HashSet
Sintaxis:
mySet1.SetEquals(mySet2);
Aquí, mySet1 y mySet2 son objetos HashSets.
Tipo de devolución: este método devuelve True si mySet1 es igual a mySet2; de lo contrario, devuelve False .
Excepción: este método dará ArgumentNullException si el HashSet es nulo .
A continuación se dan algunos ejemplos para entender la implementación de una mejor manera:
Ejemplo 1:
// C# code to check if HashSet and the specified // collection contain the same elements. using System; using System.Collections.Generic; class GFG { // Driver code public static void Main() { // Creating a HashSet of strings HashSet<string> mySet1 = new HashSet<string>(); // Inserting elements in HashSet mySet1.Add("Geeks"); mySet1.Add("GeeksforGeeks"); mySet1.Add("GeeksClasses"); mySet1.Add("GeeksQuiz"); // Creating a HashSet of strings HashSet<string> mySet2 = new HashSet<string>(); // Inserting elements in HashSet mySet2.Add("Geeks"); mySet2.Add("GeeksforGeeks"); mySet2.Add("GeeksClasses"); mySet2.Add("GeeksQuiz"); // Check if both HashSets contains same elements Console.WriteLine(mySet1.SetEquals(mySet2)); } }
True
Ejemplo 2:
// C# code to check if HashSet and the specified // collection contain the same elements. using System; using System.Collections.Generic; class GFG { // Driver code public static void Main() { // Creating a HashSet of integers HashSet<int> mySet1 = new HashSet<int>(); // Inserting elements in HashSet mySet1.Add(4); mySet1.Add(8); mySet1.Add(12); mySet1.Add(16); // Creating a HashSet of integers HashSet<int> mySet2 = new HashSet<int>(); // Inserting elements in HashSet mySet2.Add(5); mySet2.Add(10); mySet2.Add(15); mySet2.Add(20); // Check if both HashSets contains same elements Console.WriteLine(mySet1.SetEquals(mySet2)); } }
False
Referencia:
Publicación traducida automáticamente
Artículo escrito por Sahil_Bansall y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA