Este método se usa para verificar si SortedDictionary<TKey, TValue> contiene un elemento con el valor especificado o no.
Sintaxis:
public bool ContainsValue (TValue value);
Aquí, el valor es el valor que se va a ubicar en SortedDictionary. El valor puede ser nulo para los tipos de referencia.
Valor devuelto: este método devuelve verdadero si SortedDictionary contiene un elemento con el valor especificado; de lo contrario, devuelve falso .
A continuación se muestran los programas para ilustrar el uso del método SortedDictionary<TKey, TValue>.ContainsValue() :
Ejemplo 1:
// C# code to check if a value // is present or not in a // SortedDictionary. using System; using System.Collections.Generic; class GFG { // Driver code public static void Main() { // Create a new SortedDictionary // of strings, with string keys. SortedDictionary<string, string> myDict = new SortedDictionary<string, string>(); // Adding key/value pairs in myDict myDict.Add("Australia", "Canberra"); myDict.Add("Belgium", "Brussels"); myDict.Add("Netherlands", "Amsterdam"); myDict.Add("China", "Beijing"); myDict.Add("Russia", "Moscow"); myDict.Add("India", "New Delhi"); // Checking the value "India" but // here "India" is the key if (myDict.ContainsValue("India")) Console.WriteLine("Value : India is present."); else Console.WriteLine("Value : India is not present."); } }
Producción:
Value : India is not present.
Ejemplo 2:
// C# code to check if a value // is present or not in a // SortedDictionary. using System; using System.Collections.Generic; class GFG { // Driver code public static void Main() { // Create a new SortedDictionary // of strings, with string keys. SortedDictionary<string, string> myDict = new SortedDictionary<string, string>(); // Adding key/value pairs in myDict myDict.Add("Australia", "Canberra"); myDict.Add("Belgium", "Brussels"); myDict.Add("Netherlands", "Amsterdam"); myDict.Add("China", "Beijing"); myDict.Add("Russia", "Moscow"); myDict.Add("India", "New Delhi"); // Checking for value Moscow if (myDict.ContainsValue("Moscow")) Console.WriteLine("Value : Moscow is present"); else Console.WriteLine("Value : Moscow is absent"); } }
Producción:
Value : Moscow is present
Referencia :
Publicación traducida automáticamente
Artículo escrito por rupesh_rao y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA