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

जांचें कि स्ट्रिंग कोलेक्शन केवल सी # में पढ़ा जाता है या नहीं

यह जाँचने के लिए कि क्या StringCollection केवल पढ़ने के लिए है, कोड इस प्रकार है -

उदाहरण

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      StringCollection stringCol = new StringCollection();
      String[] arr = new String[] { "100", "200", "300", "400", "500" };
      Console.WriteLine("Array elements...");
      foreach (string res in arr) {
         Console.WriteLine(res);
      }
      stringCol.AddRange(arr);
      Console.WriteLine("Is the StringCollection read-only? = "+stringCol.IsReadOnly);
      Console.WriteLine("Does the specified string is in the StringCollection? = "+stringCol.Contains("800"));
   }
}

आउटपुट

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

Array elements...
100
200
300
400
500
Is the StringCollection read-only? = False
Does the specified string is in the StringCollection? = False

उदाहरण

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

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      StringCollection stringCol = new StringCollection();
      String[] arr = new String[] { "John", "Tim", "Kevin", "Bradman", "Katie", "Tom", "Nathan" };
      Console.WriteLine("String array elements...");
      foreach (string res in arr) {
         Console.WriteLine(res);
      }
      stringCol.AddRange(arr);
      Console.WriteLine("Is the StringCollection read-only? = "+stringCol.IsReadOnly);
      Console.WriteLine("Does the specified string is in the StringCollection? = "+stringCol.Contains("Tim"));
   }
}

आउटपुट

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

String array elements...
John
Tim
Kevin
Bradman
Katie
Tom
Nathan
Is the StringCollection read-only? = False
Does the specified string is in the StringCollection? = True

  1. जांचें कि कोई सरणी केवल पढ़ने के लिए है या नहीं सी #

    यह जांचने के लिए कि कोई सरणी केवल पढ़ने के लिए है या नहीं, नीचे दिए गए कोड को आजमाएं - उदाहरण using System; public class Demo {    public static void Main(){       string[] products = new string[] { };       Console.WriteLine("One or more planets begin wi

  1. सी # का उपयोग कर फ़ाइल के अस्तित्व की जांच कैसे करें?

    मान लें कि हमें निम्न फ़ाइल ढूंढनी है - E:\new.txt उपरोक्त फ़ाइल के अस्तित्व की जाँच करने के लिए, मौजूद () विधि का उपयोग करें - if (File.Exists(@"E:\new.txt")) {    Console.WriteLine("File exists..."); } फ़ाइल के अस्तित्व की जाँच करने के लिए यहाँ पूरा कोड है - उदाहरण

  1. जांचें कि क्या पायथन में सरणी सुंदर है

    मान लीजिए कि हमारे पास अद्वितीय तत्वों की एक सरणी संख्या है। हमें यह जांचना होगा कि ये शर्तें पूरी करती हैं या नहीं: तत्व 1 से n के बीच होंगे। सरणी को आरोही क्रम में क्रमबद्ध नहीं किया जाना चाहिए। इसलिए, अगर इनपुट nums =[2,6,1,5,3,4] जैसा है, तो आउटपुट ट्रू होगा। इसे हल करने के लिए, हम इन चरणों