Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> C#

Dictionary.ContainsValue () सी # में विधि

C# में Dictionary.ContainsValue () विधि का उपयोग यह जांचने के लिए किया जाता है कि Dictionary में कोई विशिष्ट मान है या नहीं।

सिंटैक्स

public bool ContainsValue (TValue val);

ऊपर, वैल खोजा जाने वाला मान है।

आइए अब Dictionary.ContainsValue () विधि को लागू करने के लिए एक उदाहरण देखें -

उदाहरण

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(){
      Dictionary<string, string> dict =
      new Dictionary<string, string>();
      dict.Add("One", "John");
      dict.Add("Two", "Tom");
      dict.Add("Three", "Jacob");
      dict.Add("Four", "Kevin");
      dict.Add("Five", "Nathan");
      Console.WriteLine("Count of elements = "+dict.Count);
      Console.WriteLine("\nKey/value pairs...");
      foreach(KeyValuePair<string, string> res in dict){
         Console.WriteLine("Key = {0}, Value = {1}", res.Key, res.Value);
      }
      if (dict.ContainsValue("Kevin"))
         Console.WriteLine("Value found!");
      else
         Console.WriteLine("Value isn't in the dictionary!");
      dict.Clear();
      Console.WriteLine("Cleared Key/value pairs...");
      foreach(KeyValuePair<string, string> res in dict){
         Console.WriteLine("Key = {0}, Value = {1}", res.Key, res.Value);
      }
      Console.WriteLine("Count of elements now = "+dict.Count);
   }
}

आउटपुट

यह निम्नलिखित आउटपुट देगा -

Count of elements = 5
Key/value pairs...
Key = One, Value = John
Key = Two, Value = Tom
Key = Three, Value = Jacob
Key = Four, Value = Kevin
Key = Five, Value = Nathan
Value found!
Cleared Key/value pairs...
Count of elements now = 0

आइए अब Dictionary.ContainsValue () विधि को लागू करने के लिए एक और उदाहरण देखें -

उदाहरण

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(){
      Dictionary<string, string> dict =
      new Dictionary<string, string>();
      dict.Add("One", "Chris");
      dict.Add("Two", "Steve");
      dict.Add("Three", "Messi");
      dict.Add("Four", "Ryan");
      dict.Add("Five", "Nathan");
      Console.WriteLine("Count of elements = "+dict.Count);
      Console.WriteLine("\nKey/value pairs...");
      foreach(KeyValuePair<string, string> res in dict){
         Console.WriteLine("Key = {0}, Value = {1}", res.Key, res.Value);
      }
      if (dict.ContainsValue("Angelina"))
         Console.WriteLine("Value found!");
      else
         Console.WriteLine("Value isn't in the dictionary!");
      dict.Clear();
      Console.WriteLine("Cleared Key/value pairs...");
      foreach(KeyValuePair<string, string> res in dict){
         Console.WriteLine("Key = {0}, Value = {1}", res.Key, res.Value);
      }
      Console.WriteLine("Count of elements now = "+dict.Count);
   }
}

आउटपुट

यह निम्नलिखित आउटपुट देगा -

Count of elements = 5
Key/value pairs...
Key = One, Value = Chris
Key = Two, Value = Steve
Key = Three, Value = Messi
Key = Four, Value = Ryan
Key = Five, Value = Nathan
Value isn't in the dictionary!
Cleared Key/value pairs...
Count of elements now = 0

  1. C# में Char.IsUpper () विधि

    C# में Char.IsUpper() विधि इंगित करती है कि निर्दिष्ट यूनिकोड वर्ण को अपरकेस अक्षर के रूप में वर्गीकृत किया गया है या नहीं। सिंटैक्स public static bool IsUpper (char ch); ऊपर, पैरामीटर ch मूल्यांकन करने के लिए यूनिकोड वर्ण है। आइए अब हम Char.IsUpper() पद्धति को लागू करने के लिए एक उदाहरण देखें - उ

  1. C# में Char.IsSymbol () विधि

    C# में Char.IsSymbol() विधि यह इंगित कर रही है कि निर्दिष्ट स्ट्रिंग में निर्दिष्ट स्थान पर वर्ण को प्रतीक वर्ण के रूप में वर्गीकृत किया गया है या नहीं। सिंटैक्स public static bool IsSymbol (string str, int index); ऊपर, str एक स्ट्रिंग है, जबकि वर्ण की स्थिति str में मूल्यांकन करने के लिए है। आइए

  1. Dictionary.ContainsKey () सी # में विधि

    C# में Dictionary.ContainsKey () विधि यह जांचती है कि Dictionary