System.Perf.Dictionary.EmptyDictionaryTester.Add C# (CSharp) Method

Add() private method

private Add ( IDictionary dic ) : void
dic IDictionary
return void
        public void Add(IDictionary dic)
        {
            for (int i = 0; i < this.count; ++i)
                dic.Add(rnd.Next(), null);
        }