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

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

तत्वों की श्रेणी प्राप्त करने के लिए GetRange() विधि का उपयोग करें -

सबसे पहले, एक सूची सेट करें और तत्वों को जोड़ें -

List<int> arr1 = new List<int>();
arr1.Add(10);
arr1.Add(20);
arr1.Add(30);
arr1.Add(40);
arr1.Add(50);

अब, एक नई सूची के तहत इंडेक्स 1 और 3 के बीच तत्वों की श्रेणी प्राप्त करें -

List<int> myList = arr1.GetRange(1, 3);

यहाँ पूरा कोड है -

उदाहरण

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main() {
      List<int> arr1 = new List<int>();
      arr1.Add(10);
      arr1.Add(20);
      arr1.Add(30);
      arr1.Add(40);
      arr1.Add(50);
      Console.WriteLine("Initial List ...");
      foreach (int i in arr1) {
         Console.WriteLine(i);
      }
      Console.WriteLine("Getting elements between a range...");
      List<int> myList = arr1.GetRange(1, 3);
      foreach (int res in myList) {
         Console.WriteLine(res);
      }
   }
}

आउटपुट

Initial List ...
10
20
30
40
50
Getting elements between a range...
20
30
40

  1. सी # में एक सूची से डुप्लिकेट निकालें

    C# में किसी सूची से डुप्लिकेट निकालने के लिए Distinct() विधि का उपयोग करें। सबसे पहले, एक नई सूची जोड़ें - List<int> arr1 = new List<int>(); arr1.Add(10); arr1.Add(20); arr1.Add(30); arr1.Add(40); arr1.Add(50); arr1.Add(30); arr1.Add(40); arr1.Add(50); डुप्लिकेट तत्वों को हटाने के लिए,

  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, &

  1. सी # में संग्रह से तत्वों को पुनः प्राप्त करना

    आइए सूची संग्रह का एक उदाहरण देखें। हमने तत्वों को सेट किया है - List<int> list = new List<int>(); list.Add(20); list.Add(40); list.Add(60); list.Add(80); अब मान लें कि हमें सूची से पहले तत्व को पुनः प्राप्त करने की आवश्यकता है। उसके लिए इंडेक्स को इस तरह सेट करें - int a = list[0]; स