using System;
using System.Collections;
public class Program
{
public static void Main()
Hashtable m_hash = new Hashtable();
string birthday = "1979/01/01";
m_hash.Remove(0x00080023);
m_hash.Add(0x00080023, birthday);
Console.WriteLine(m_hash[0x00080023]);
}