La clase SortedSet representa la colección de objetos ordenados. Esta clase viene bajo el espacio de nombres System.Collections.Generic . El método SortedSet<T>.Contains(T) se utiliza para verificar si un SortedSet contiene un elemento específico o no.
Propiedades:
- En C#, la clase SortedSet se puede usar para almacenar, eliminar o ver elementos.
- Mantiene el orden ascendente y no almacena elementos duplicados.
- Se sugiere usar la clase SortedSet si tiene que almacenar elementos únicos y mantener un orden ascendente.
Sintaxis:
public virtual bool Contains (T item);
Aquí, T es el parámetro de tipo, es decir, el tipo de elementos del conjunto.
Valor devuelto: el método devuelve True si el conjunto contiene el elemento especificado; de lo contrario, devuelve False .
Ejemplo 1:
// C# code to check if the SortedSet // contains a specific element using System; using System.Collections.Generic; class GFG { // Driver code public static void Main() { // Creating a SortedSet of integers SortedSet<int> mySortedSet = new SortedSet<int>(); // adding elements in mySortedSet mySortedSet.Add(2); mySortedSet.Add(4); mySortedSet.Add(6); mySortedSet.Add(8); mySortedSet.Add(10); // Checking if the SortedSet contains // a specific element Console.WriteLine(mySortedSet.Contains(6)); } }
Producción:
True
Ejemplo 2:
// C# code to check if the SortedSet // contains a specific element using System; using System.Collections.Generic; class GFG { // Driver code public static void Main() { // Creating a SortedSet of strings SortedSet<string> mySortedSet = new SortedSet<string>(); // adding elements in mySortedSet mySortedSet.Add("Mumbai"); mySortedSet.Add("Bangalore"); mySortedSet.Add("Chandigarh"); mySortedSet.Add("Noida"); mySortedSet.Add("Jaipur"); mySortedSet.Add("Kolkata"); // Checking if the SortedSet contains // a specific element Console.WriteLine(mySortedSet.Contains("Delhi")); } }
Producción:
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