public void TestGetHashKey()
        {
            var inputs = new string[10] {
                "a", "b", "c", "d", "e", "f", "g", "h", "i", "j"
            };
            var table = new MyHashtable <string, string>();

            for (var i = 0; i < inputs.Length; i++)
            {
                Console.WriteLine(string.Format("{0}={1}", inputs[i], table.GetHashKey(inputs[i])));
            }

            Assert.IsTrue(true);
        }