Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C#의 Hashtable에서 항목 제거

<시간/>

다음은 우리의 Hashtable입니다 -

Hashtable h = new Hashtable();
h.Add(1, "Jack");
h.Add(2, "Henry");
h.Add(3, "Ben");
h.Add(4, "Chris");

항목을 제거하려면 Remove() 메서드를 사용합니다. 여기서는 세 번째 요소를 제거합니다.

h.Remove(3);

전체 예를 살펴보겠습니다.

using System;
using System.Collections;
public class Demo {
   public static void Main() {
      Hashtable h = new Hashtable();
      h.Add(1, "Jack");
      h.Add(2, "Henry");
      h.Add(3, "Ben");
      h.Add(4, "Chris");
      Console.WriteLine("Initial list:");
      foreach (var key in h.Keys ) {
         Console.WriteLine("Key = {0}, Value = {1}",key , h[key]);
      }
      // removing an item
      h.Remove(3);
      Console.WriteLine("New list after removing an item: ");
      foreach (var key in h.Keys ) {
         Console.WriteLine("Key = {0}, Value = {1}",key , h[key]);
      }
   }
}

출력

Initial list:
Key = 4, Value = Chris
Key = 3, Value = Ben
Key = 2, Value = Henry
Key = 1, Value = Jack
New list after removing an item:
Key = 4, Value = Chris
Key = 2, Value = Henry
Key = 1, Value = Jack