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

जांचें कि सी # में ArrayList में कोई तत्व निहित है या नहीं


यह जांचने के लिए कि कोई तत्व ArrayList में निहित है या नहीं, कोड इस प्रकार है -

उदाहरण

using System;
using System.Collections;
public class Demo {
   public static void Main(){
      ArrayList list = new ArrayList();
      list.Add("One");
      list.Add("Two");
      list.Add("Three");
      list.Add("Four");
      list.Add("Five");
      list.Add("Six");
      list.Add("Seven");
      list.Add("Eight");
      Console.WriteLine("ArrayList elements...");
      foreach(string str in list){
         Console.WriteLine(str);
      }
      Console.WriteLine("ArrayList is read-only? = "+list.IsReadOnly);
      Console.WriteLine("Does the element Six in the ArrayList? = "+list.Contains("Six"));
   }
}

आउटपुट

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

ArrayList elements...
One
Two
Three
Four
Five
Six
Seven
Eight
ArrayList is read-only? = False
Does the element Six in the ArrayList? = True

उदाहरण

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

using System;
using System.Collections;
public class Demo {
   public static void Main(){
      ArrayList arrList = new ArrayList();
      arrList.Add(100);
      arrList.Add(200);
      arrList.Add(300);
      arrList.Add(400);
      arrList.Add(500);
      Console.WriteLine("Display elements in a range...");
      IEnumerator demoEnum = arrList.GetEnumerator(1, 3);
      while (demoEnum.MoveNext()) {
         Object ob = demoEnum.Current;
         Console.WriteLine(ob);
      }
      Console.WriteLine("Does the element 1000 in the ArrayList? = "+arrList.Contains(1000));
   }
}

आउटपुट

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

Display elements in a range...
200
300
400
Does the element 1000 in the ArrayList? = False

  1. जांचें कि किसी तत्व की सामग्री HTML में संपादन योग्य है या नहीं

    संतुष्ट संपादन योग्य . का उपयोग करें HTML में विशेषता, यह निर्धारित करने के लिए कि किसी तत्व की सामग्री संपादन योग्य है या नहीं। उदाहरण कंटेंटेडेबल . को कैसे लागू किया जाए, यह जानने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं एचटीएमएल में विशेषता। संपादन योग्य सामग्री में कर्सर रखें और आ

  1. HTML में एलीमेंट की ऊंचाई कैसे जोड़ें?

    ऊंचाई का प्रयोग करें किसी तत्व की ऊंचाई निर्धारित करने के लिए HTML में विशेषता। आप निम्नलिखित तत्वों के साथ विशेषता का उपयोग कर सकते हैं - , , , , , आदि। उदाहरण ऊंचाई . को लागू करने के लिए आप निम्न कोड चलाने का प्रयास कर सकते हैं HTML में विशेषता - <!DOCTYPE HTML> <html>    &

  1. HTML में एलिमेंट की वैल्यू कैसे जोड़ें?

    मान का प्रयोग करें HTML में तत्व का मान जोड़ने के लिए विशेषता। यह निम्नलिखित तत्वों के साथ काम करता है - , , , , , , । उदाहरण value . को लागू करने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं विशेषता - <!DOCTYPE html> <html>    <body>       <head