Infolink

 

Search This Blog

Showing posts with label Class. Show all posts
Showing posts with label Class. Show all posts

Oct 18, 2012

How to use C# HashTable Class

Hashtable in C# represents a collection of key/value pairs which maps keys to value. Any non-null object can be used as a key but a value can. We can retrieve items from hashTable to provide the key . Both keys and values are Objects.

The commonly used functions in Hashtable are :

  Add                   : To add a pair of value in HashTable
  ContainsKey    : Check if a specified key exist or not
  ContainsValue  : Check the specified Value exist in HashTable


Remove : Remove the specified Key and corresponding Value

Add : To add a pair of value in HashTable

Syntax : HashTable.Add(Key,Value)
  Key : The Key value
  Value : The value of corresponding key
  Hashtable ht;

ht.Add("1", "Sunday");
Related Posts Plugin for WordPress, Blogger...