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

सी # में सॉर्टेडलिस्ट ऑब्जेक्ट के मानों की सूची प्राप्त करना

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

उदाहरण

using System;
using System.Collections;
public class Demo {
   public static void Main(String[] args) {
      SortedList list = new SortedList();
      list.Add("A", 1);
      list.Add("B ", 2);
      list.Add("C ", 3);
      list.Add("D", 4);
      list.Add("E", 5);
      list.Add("F", 6);
      list.Add("G", 7);
      list.Add("H", 8);
      Console.WriteLine("SortedList elements...");
      foreach(DictionaryEntry d in list) {
         Console.WriteLine(d.Key + " " + d.Value);
      }
      Console.WriteLine("\nList of values...SortedList");
      IList col = list.GetValueList();
      foreach(int res in col)
         Console.WriteLine(res);
   }
}

आउटपुट

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

SortedList elements...
A 1
B  2
C  3
D 4
E 5
F 6
G 7
H 8
List of values...SortedList
1
2
3
4
5
6
7
8

उदाहरण

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

using System;
using System.Collections;
public class Demo {
   public static void Main(String[] args) {
      SortedList list = new SortedList();
      list.Add("One", "IT");
      list.Add("Two ", "Operations");
      list.Add("Three", "Marketing");
      list.Add("Four", "Purchase");
      list.Add("Five", "Sales");
      list.Add("Six", "Finance");
      Console.WriteLine("SortedList elements...");
      foreach(DictionaryEntry d in list) {
         Console.WriteLine(d.Key + " " + d.Value);
      }
      Console.WriteLine("\nList of values...SortedList");
      IList col = list.GetValueList();
      foreach(string res in col)
         Console.WriteLine(res);
   }
}

आउटपुट

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

SortedList elements...
Five Sales
Four Purchase
One IT
Six Finance
Three Marketing
Two  Operations

List of values...SortedList
Sales
Purchase
IT
Finance
Marketing
Operations

  1. सी # सूची में पूर्णांक मान कैसे जोड़ें?

    C# में किसी सूची में पूर्णांक मान जोड़ने के लिए, जोड़ें () विधि का उपयोग करें। सबसे पहले, C# में एक पूर्णांक सूची घोषित करें - List<int> list1 = new List<int>(); अब पूर्णांक मान जोड़ें - list1.Add(900); list1.Add(400); list1.Add(300); आइए देखें पूरा कोड - उदाहरण using System; using Sy

  1. सी # में सॉर्टेडलिस्ट क्लास क्या है?

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

  1. सी # में सॉर्टेडलिस्ट क्लास की वैल्यू प्रॉपर्टी क्या है?

    सबसे पहले, SortedList वर्ग घोषित करें - SortedList list = new SortedList(); अब मान जोड़ें - list.Add("S1", "Wallets"); list.Add("S2", "Sunglasses"); list.Add("S3", "Backpacks"); SortedList वर्ग की Values ​​प्रॉपर्टी के साथ काम करने के लिए