Пример #1
0
        static void Main(string[] args)
        {
            FHashtable fht = new FHashtable("c:\\hastable", "test", 1024 * 2, 1000000);
            for (int i = 0; i < 1000; i++)
            {
                string key = GetKey(i);
                fht.Set(key, key);

            }
            for (int i = 0; i < 1000; i++)
            {
                string key = GetKey(i);
                string value = (string)fht.Get(key);
                Console.WriteLine(value);
                if (key != value)
                    throw new Exception("f");

            }
            Console.WriteLine("ok");
            Console.Read();
        }
Пример #2
0
        static void Main(string[] args)
        {
            FHashtable fht = new FHashtable("c:\\hastable", "test", 1024 * 2, 1000000);

            for (int i = 0; i < 1000; i++)
            {
                string key = GetKey(i);
                fht.Set(key, key);
            }
            for (int i = 0; i < 1000; i++)
            {
                string key   = GetKey(i);
                string value = (string)fht.Get(key);
                Console.WriteLine(value);
                if (key != value)
                {
                    throw new Exception("f");
                }
            }
            Console.WriteLine("ok");
            Console.Read();
        }