Beispiel #1
0
        public void Setup()
        {
            HashTable = new SimpleHashTable <string, int>();

            for (int i = 100; i < 1000; i++)
            {
                HashTable.AddItem($"item{i}", i);
            }
        }