        private void button1_Click(object sender, EventArgs e)
        {
            if (textBox1.Text != "" && textBox2.Text != "")
                hashTable.Add(textBox1.Text, textBox2.Text);
            else
                MessageBox.Show("Please enter key and value");

        }

    
