Este método se utiliza para verificar si Dictionary<TKey,TValue> contiene un valor específico o no.
Sintaxis:
public bool ContainsValue (TValue value);
Aquí, el valor es el Valor a ubicar en el Diccionario
Valor devuelto: este método devuelve verdadero si el Diccionario 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 Dictionary<TKey,TValue>.ContainsValue():
Ejemplo 1:
// C# code to check if a value // is present or not in a Dictionary. using System; using System.Collections.Generic; class GFG { // Driver code public static void Main() { // Create a new dictionary of // strings, with string keys. Dictionary<string, string> myDict = new Dictionary<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 Dictionary. using System; using System.Collections.Generic; class GFG { // Driver code public static void Main() { // Create a new dictionary of // strings, with string keys. Dictionary<string, string> myDict = new Dictionary<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