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

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


यह जांचने के लिए कि क्या SortedList ऑब्जेक्ट का एक निश्चित आकार है, कोड इस प्रकार है -

उदाहरण

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("Three"));
      Console.WriteLine("The SortedList object has a fixed size? = "+list.IsFixedSize);
   }
}

आउटपुट

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

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
The SortedList object has a fixed size? = False

उदाहरण

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

using System;
using System.Collections;
public class Demo {
   public static void Main(){
      SortedList list = new SortedList();
      list.Add("1", "John");
      list.Add("2", "Tim");
      list.Add("3", "Karl");
      list.Add("4", "Gary");
      list.Add("5", "Katie");
      Console.WriteLine("Key and Value of SortedList....");
      foreach(DictionaryEntry k in list )
      Console.WriteLine("Key: {0}, Value: {1}", k.Key , k.Value );
      Console.WriteLine("The SortedList object has a fixed size? = "+list.IsFixedSize);
   }
}

आउटपुट

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

Key and Value of SortedList....
Key: 1, Value: John
Key: 2, Value: Tim
Key: 3, Value: Karl
Key: 4, Value: Gary
Key: 5, Value: Katie
The SortedList object has a fixed size? = False

  1. जांचें कि किसी ऐरे का आकार निश्चित है या नहीं सी #

    यह जांचने के लिए कि किसी सरणी का आकार निश्चित है या नहीं, नीचे दिए गए कोड को आजमाएं - उदाहरण using System; public class Demo {    public static void Main(){       string[] products = new string[] { "Electronics", "Accessories", "Clothing", "

  1. पायथन - जाँच करें कि क्या K कुंजी के अनुरूप विशेष मान मौजूद है

    जब यह जांचना आवश्यक होता है कि कुंजी के के अनुरूप विशेष मान मौजूद है या नहीं, तो एक सूची समझ का उपयोग किया जाता है। नीचे उसी का एक प्रदर्शन है - उदाहरण my_list = [{"python" : "14", "is" : "great", "fun" : "1`"},{"python" : "

  1. जांचें कि क्या टपल का पायथन में कोई मूल्य नहीं है

    जब यह जांचना आवश्यक हो कि टपल का कोई कोई नहीं मान है या नहीं, तो कोई विधि, मानचित्र विधि और लैम्ब्डा फ़ंक्शन का उपयोग किया जा सकता है। मैप फ़ंक्शन किसी दिए गए फ़ंक्शन/ऑपरेशन को प्रत्येक आइटम पर एक पुनरावर्तनीय (जैसे सूची, टपल) में लागू करता है। यह परिणाम के रूप में एक सूची देता है। बेनामी फ़ंक्शन