Método SortedList ContainersKey() en C# con ejemplos

Dado un objeto SortedList, ahora nuestra tarea es verificar si el objeto SortedList dado contiene la clave específica o no. Entonces, para hacer esta tarea, usamos el   método containskey() . Este método se utiliza para determinar si un objeto SortedList contiene una clave específica o no. Devolverá verdadero si se encuentra la clave, de lo contrario, devolverá falso.

Sintaxis:

bool SortedList.ContainsKey(clave de objeto);

Donde la clave se encuentra en el objeto SortedList.

Ejemplo:

Input  : [(1, "Python"), (2, "c")]
Key    : 1
Output : Found
Input  : [(1, "Python"), (2, "c")]
Key    : 4
Output : Not Found

Acercarse:

  1. Crea una lista ordenada.
  2. Agregue clave y valores a la lista ordenada.
  3. Verifique si la clave particular existe en la lista usando el método containskey().
  4. Muestre la salida.

C#

// C# program to check whether a SortedList 
// object contains a specific key or not
using System;
using System.Collections;
  
class GFG{
      
static public void Main()
{
      
    // Create sorted list
    SortedList data = new SortedList();
      
    // Add elements to data sorted list 
    data.Add(1, "Python");
    data.Add(2, "c");
    data.Add(3, "java");
    data.Add(4, "php");
    data.Add(5, "html");
    data.Add(6, "bigdata");
    data.Add(7, "java script");
      
    // Check whether the key - 1 is present
    // in the list or not
    if (data.ContainsKey(1))
        Console.WriteLine("Present in the List");
    else
        Console.WriteLine("Not in the List");
          
    // Check whether the key - 4 is present
    // in the list or not
    if (data.ContainsKey(4))
        Console.WriteLine("Present in the List");
    else
        Console.WriteLine("Not in the List");
      
    // Check whether the key - 8 is present
    // in the list or not
    if (data.ContainsKey(8))
        Console.WriteLine("Present in the List");
    else
        Console.WriteLine("Not in the List");
}
}

Producción:

Present in the List
Present in the List
Not in the List

Publicación traducida automáticamente

Artículo escrito por bhanusivanagulug y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *