You are on page 1of 1

using System;

using System.Collections;
using System.Collections.Generic;

namespace DemoConsole
{
class Program
{
static void Main(string[] args)
{
Hashtable hat = new Hashtable();
hat.Add("ID",2345);
hat.Add("Name", "Parmanand Pandey");
hat.Add("salary", 40000);
hat.Add("Desingnation", "Manager");
hat.Add("IsMarried", false);
hat.Add("City", "Gaziabad 'Uttar Pradesh(UP)'");
Console.WriteLine(hat["Name"]);
Console.WriteLine(hat["Id"]);
Console.WriteLine(hat["City"]);
}
}
}

You might also like