System.Collections.Tests.SortedDictionary_Generic_Tests_int_int.CreateTKey C# (CSharp) Method

CreateTKey() protected method

protected CreateTKey ( seed ) : int
return int
        protected override int CreateTKey(int seed)
        {
            Random rand = new Random(seed);
            return rand.Next();
        }
SortedDictionary_Generic_Tests_int_int