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

CreateT() protected method

protected CreateT ( seed ) : int>.KeyValuePair
return int>.KeyValuePair
        protected override KeyValuePair<int, int> CreateT(int seed)
        {
            Random rand = new Random(seed);
            return new KeyValuePair<int, int>(rand.Next(), rand.Next());
        }
SortedDictionary_Generic_Tests_int_int