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

सी # में सूची में एक तत्व जोड़ना

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

उदाहरण

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(String[] args) {
      List<String> list = new List<String>();
      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("Enumerator iterates through the list elements...");
      List<string>.Enumerator demoEnum = list.GetEnumerator();
      while (demoEnum.MoveNext()) {
         string res = demoEnum.Current;
         Console.WriteLine(res);
      }
   }
}

आउटपुट

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

Enumerator iterates through the list elements...
One
Two
Three
Four
Five
Six
Seven
Eight

उदाहरण

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

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(String[] args) {
      List<int> list = new List<int>();
      list.Add(50);
      list.Add(100);
      list.Add(150);
      list.Add(200);
      list.Add(250);
      list.Add(500);
      list.Add(750);
      list.Add(1000);
      list.Add(1250);
      list.Add(1500);
      Console.WriteLine("Enumerator iterates through the list elements...");
      List<int>.Enumerator demoEnum = list.GetEnumerator();
      while (demoEnum.MoveNext()) {
         int res = demoEnum.Current;
         Console.WriteLine(res);
      }
   }
}

आउटपुट

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

Enumerator iterates through the list elements...
50
100
150
200
250
500
750
1000
1250
1500

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

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

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

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

  1. इंडेक्सिंग की मदद से एक पायथन सूची में तत्व जोड़ें

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