

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Remove an item from a Hashtable in C#
The following is our Hashtable −
Hashtable h = new Hashtable(); h.Add(1, "Jack"); h.Add(2, "Henry"); h.Add(3, "Ben"); h.Add(4, "Chris");
To remove an item, use the Remove() method. Here, we are removing the 3rd element.
h.Remove(3);
Let us see the complete example.
Example
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]); } } }
Output
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
- Related Questions & Answers
- How to remove an item from an ArrayList in C#?
- How to remove an item from an ArrayList in Kotlin?
- C# program to remove an item from Set
- How can I remove a specific item from an array JavaScript?
- Remove a specified item from SortedSet in C#
- How can I remove a specific item from an array in JavaScript
- Remove all elements from the Hashtable in C#
- How to remove an item from a C# list by using an index?
- How to remove an item from JavaScript array by value?
- What is the best way to remove an item from a Python dictionary?
- How to remove an item from a C++ STL vector with a certain value?
- MongoDB query to remove item from array?
- Remove item from a nested array by indices in JavaScript
- Remove a FileList item from a multiple “input:file” in HTML5
- Remove the element with the specified key from the Hashtable in C#
Advertisements