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

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

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

सिंटैक्स

वाक्य रचना इस प्रकार है -

public bool ContainsValue (TValue val);

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

उदाहरण

आइए अब एक उदाहरण देखें -

using System;
using System.Collections;
using System.Collections.Generic;
public class Demo {
   public static void Main(){
      SortedDictionary<int, string> sortedDict = new SortedDictionary<int, string>();
      sortedDict.Add(100, "Inspiron");
      sortedDict.Add(200, "Alienware");
      sortedDict.Add(300, "Projectors");
      sortedDict.Add(400, "XPS");
      Console.WriteLine("SortedDictionary key-value pairs...");
      IDictionaryEnumerator demoEnum = sortedDict.GetEnumerator();
      while (demoEnum.MoveNext())
      Console.WriteLine("Key = " + demoEnum.Key + ", Value = " + demoEnum.Value);
      Console.WriteLine("Count of SortedDictionary key-value pairs = "+sortedDict.Count);
      sortedDict.Add(800, "Notebook");
      sortedDict.Add(10000, "Bluetooth Speaker");
      Console.WriteLine("\nSortedDictionary key-value pairs...UPDATED");
      demoEnum = sortedDict.GetEnumerator();
      while (demoEnum.MoveNext())
      Console.WriteLine("Key = " + demoEnum.Key + ", Value = " + demoEnum.Value);
      Console.WriteLine("Count of SortedDictionary key-value pairs (UPDATED) = "+sortedDict.Count);
      Console.WriteLine("Is the value in the SortedDictionary key-value pairs = "+sortedDict.ContainsValue("Notebook"));
      sortedDict.Clear();
      Console.WriteLine("\nCount of SortedDictionary key-value pairs (UPDATED) = "+sortedDict.Count);
   }
}

आउटपुट

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

SortedDictionary key-value pairs...
Key = 100, Value = Inspiron
Key = 200, Value = Alienware
Key = 300, Value = Projectors
Key = 400, Value = XPS
Count of SortedDictionary key-value pairs = 4
SortedDictionary key-value pairs...UPDATED
Key = 100, Value = Inspiron
Key = 200, Value = Alienware
Key = 300, Value = Projectors
Key = 400, Value = XPS
Key = 800, Value = Notebook
Key = 10000, Value = Bluetooth Speaker
Count of SortedDictionary key-value pairs (UPDATED) = 6
Is the value in the SortedDictionary key-value pairs = True
Count of SortedDictionary key-value pairs (UPDATED) = 0

उदाहरण

आइए अब एक और उदाहरण देखें -

using System;
using System.Collections;
using System.Collections.Generic;
public class Demo {
   public static void Main(){
      SortedDictionary<int, string> sortedDict = new SortedDictionary<int, string>();
      sortedDict.Add(1, "One");
      sortedDict.Add(2, "Two");
      sortedDict.Add(3, "Three");
      sortedDict.Add(4, "Four");
      sortedDict.Add(5, "Five");
      sortedDict.Add(6, "Six");
      Console.WriteLine("SortedDictionary key-value pairs...");
      IDictionaryEnumerator demoEnum = sortedDict.GetEnumerator();
      while (demoEnum.MoveNext())
      Console.WriteLine("Key = " + demoEnum.Key + ", Value = " + demoEnum.Value);
      Console.WriteLine("Count of SortedDictionary key-value pairs = "+sortedDict.Count);
      sortedDict.Add(7, "Seven");
      sortedDict.Add(8, "Eight");
      Console.WriteLine("\nSortedDictionary key-value pairs...UPDATED");
      demoEnum = sortedDict.GetEnumerator();
      while (demoEnum.MoveNext())
      Console.WriteLine("Key = " + demoEnum.Key + ", Value = " + demoEnum.Value);
      Console.WriteLine("Count of SortedDictionary key-value pairs (UPDATED) = "+sortedDict.Count);
      Console.WriteLine("Is the value in the SortedDictionary key-value pairs = "+sortedDict.ContainsValue("Eleven"));
      sortedDict.Clear();
      Console.WriteLine("\nCount of SortedDictionary key-value pairs (UPDATED) = "+sortedDict.Count);
   }
}

आउटपुट

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

SortedDictionary key-value pairs...
Key = 1, Value = One
Key = 2, Value = Two
Key = 3, Value = Three
Key = 4, Value = Four
Key = 5, Value = Five
Key = 6, Value = Six
Count of SortedDictionary key-value pairs = 6
SortedDictionary key-value pairs...UPDATED
Key = 1, Value = One
Key = 2, Value = Two
Key = 3, Value = Three
Key = 4, Value = Four
Key = 5, Value = Five
Key = 6, Value = Six
Key = 7, Value = Seven
Key = 8, Value = Eight
Count of SortedDictionary key-value pairs (UPDATED) = 8
Is the value in the SortedDictionary key-value pairs = False
Count of SortedDictionary key-value pairs (UPDATED) = 0

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

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

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

    C# में Dictionary.ContainsValue () विधि का उपयोग यह जांचने के लिए किया जाता है कि Dictionary में कोई विशिष्ट मान है या नहीं। सिंटैक्स public bool ContainsValue (TValue val); ऊपर, वैल खोजा जाने वाला मान है। आइए अब Dictionary.ContainsValue () विधि को लागू करने के लिए एक उदाहरण देखें - उदाहरण using S

  1. कनवर्ट करें। सी # में डबल विधि

    किसी निर्दिष्ट मान को डबल-सटीक फ़्लोटिंग-पॉइंट संख्या में बदलने के लिए, Convert.ToDouble() विधि का उपयोग करें। निम्नलिखित हमारा लंबा मूल्य है - long[] val = { 340, -200}; अब इसे डबल में बदलें। double result; result = Convert.ToDouble(val); उदाहरण using System; public class Demo {    publ