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

जांचें कि सॉर्टेडलिस्ट ऑब्जेक्ट में सी # में एक विशिष्ट मान है या नहीं

यह जांचने के लिए कि सॉर्टेडलिस्ट ऑब्जेक्ट में कोई विशिष्ट मान है या नहीं, कोड इस प्रकार है -

उदाहरण

using System;
using System.Collections;
public class Demo {
   public static void Main(){
      SortedList list = new SortedList();
      list.Add("1", "One");
      list.Add("2", "Two");
      list.Add("3", "Three");
      list.Add("4", "Four");
      list.Add("5", "Five");
      list.Add("6", "Six");
      list.Add("7", "Seven");
      list.Add("8", "Eight");
      Console.WriteLine("Key and Value of SortedList....");
      foreach(DictionaryEntry k in list )
      Console.WriteLine("Key: {0}, Value: {1}", k.Key , k.Value );
      Console.WriteLine("Is the SortedList having the value? "+list.ContainsValue("Five"));
   }
}

आउटपुट

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

Key and Value of SortedList....
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
Is the SortedList having the value? True

उदाहरण

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

using System;
using System.Collections;
public class Demo {
   public static void Main(){
      SortedList list = new SortedList();
      list.Add("1", "One");
      list.Add("2", "Two");
      list.Add("3", "Three");
      list.Add("4", "Four");
      list.Add("5", "Five");
      list.Add("6", "Six");
      list.Add("7", "Seven");
      list.Add("8", "Eight");
      Console.WriteLine("Key and Value of SortedList....");
      foreach(DictionaryEntry k in list )
      Console.WriteLine("Key: {0}, Value: {1}", k.Key , k.Value );
      Console.WriteLine("Is the SortedList having the value? "+list.ContainsValue("Tenth"));
   }
}

आउटपुट

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

Key and Value of SortedList....
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
Is the SortedList having the value? False

  1. जांचें कि हैशटेबल में सी # में एक विशिष्ट कुंजी है या नहीं

    यह जांचने के लिए कि हैशटेबल में कोई विशिष्ट कुंजी है या नहीं, कोड इस प्रकार है - उदाहरण using System; using System.Collections; public class Demo {    public static void Main()    public static void Main(){       Hashtable hash = new Hashtable();     &nbs

  1. जांचें कि सॉर्टेडसेट में सी # में एक विशिष्ट तत्व है या नहीं

    यह जांचने के लिए कि सॉर्टेडसेट में कोई विशिष्ट तत्व है या नहीं, कोड इस प्रकार है - उदाहरण using System; using System.Collections.Generic; public class Demo {    public static void Main(){       SortedSet<string> set1 = new SortedSet<string>();      

  1. जांचें कि हैशटेबल में सी # में कोई विशिष्ट मान है या नहीं

    यह जांचने के लिए कि हैशटेबल में कोई विशिष्ट मान है या नहीं, कोड इस प्रकार है - उदाहरण using System; using System.Collections; public class Demo {    public static void Main(){       Hashtable hash = new Hashtable();       hash.Add("1", "A")