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

एक गणक प्राप्त करें जो सी # में सूची के माध्यम से पुनरावृत्त करता है

सूची के माध्यम से पुनरावृति करने वाला एक प्रगणक प्राप्त करने के लिए, कोड इस प्रकार है -

उदाहरण

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(String[] args){
      List<String> list1 = new List<String>();
      list1.Add("One");
      list1.Add("Two");
      list1.Add("Three");
      list1.Add("Four");
      list1.Add("Five");
      Console.WriteLine("Elements in List1...");
      foreach (string res in list1){
         Console.WriteLine(res);
      }
      List<String> list2 = new List<String>();
      list2.Add("India");
      list2.Add("US");
      list2.Add("UK");
      list2.Add("Canada");
      list2.Add("Poland");
      list2.Add("Netherlands");
      Console.WriteLine("Elements in List2...");
      List<String>.Enumerator demoEnum = list2.GetEnumerator();
      while (demoEnum.MoveNext()) {
         string res = demoEnum.Current;
         Console.WriteLine(res);
      }
      Console.WriteLine("Is List2 equal to List1? = "+list2.Equals(list1));
   }
}

आउटपुट

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

Elements in List1...
One
Two
Three
Four
Five
Elements in List2...
India
US
UK
Canada
Poland Netherlands Is List2 equal to List1? = False

उदाहरण

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

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");
      list.Add("Nine");
      list.Add("Ten");
      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
Nine
Ten

  1. सी # प्रोग्राम सूची से पहले तीन तत्व प्राप्त करने के लिए

    C# में तत्वों की पहली व्यक्तिगत संख्या प्राप्त करने के लिए Take() विधि का उपयोग करें। सबसे पहले, एक सूची सेट करें और तत्वों को जोड़ें - List<string> myList = new List<string>(); myList.Add("One"); myList.Add("Two"); myList.Add("Three"); myList.Add("Fou

  1. सी # सूची में तत्वों की श्रेणी प्राप्त करें

    तत्वों की श्रेणी प्राप्त करने के लिए GetRange() विधि का उपयोग करें - सबसे पहले, एक सूची सेट करें और तत्वों को जोड़ें - List<int> arr1 = new List<int>(); arr1.Add(10); arr1.Add(20); arr1.Add(30); arr1.Add(40); arr1.Add(50); अब, एक नई सूची के तहत इंडेक्स 1 और 3 के बीच तत्वों की श्रेणी प्

  1. सी # प्रोग्राम एक शब्दकोश से चाबियों की सूची प्राप्त करने के लिए

    शब्दकोश तत्वों को सेट करें - Dictionary<int, string> d = new Dictionary<int, string>(); // dictionary elements d.Add(1, "One"); d.Add(2, "Two"); d.Add(3, "Three"); d.Add(4, "Four"); d.Add(5, "Five"); d.Add(6, "Six"); d.Add(7, &