從 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

更新於:23-6-2020

647 次瀏覽

開啟你的職業生涯

透過完成課程獲得認證

開始吧
廣告
© . All rights reserved.