Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

รับ ICollection ที่มีคีย์ใน ListDictionary ใน C #


ในการรับ ICollection ที่มีคีย์ใน ListDictionary รหัสจะเป็นดังนี้ -

ตัวอย่าง

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main(){
      ListDictionary listDict = new ListDictionary();
      listDict.Add("1", "Laptop");
      listDict.Add("2", "Tablet");
      listDict.Add("3", "Desktop");
      listDict.Add("4", "Speaker");
      listDict.Add("5", "Earphone");
      listDict.Add("6", "Headphone");
      ICollection col = listDict.Keys;
      foreach(String s in col){
         Console.WriteLine(s);
      }
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

1
2
3
4
5
6

ตัวอย่าง

เรามาดูตัวอย่างกัน −

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main(){
      ListDictionary listDict = new ListDictionary();
      listDict.Add("A", "Tom");
      listDict.Add("B", "John");
      listDict.Add("C", "Kevin");
      listDict.Add("D", "Tim");
      ICollection col = listDict.Keys;
      foreach(String s in col){
         Console.WriteLine(s);
      }
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

A
B
C
D