Example #1
0
        static void Main()
        {
            // Create a list of integeres from 1 to 10000
            List <int> list = CreateIntList.CreateIntForList(1, 10000);

            // Shuffle the list with the Fisher-Yates shuffle
            Shuffle.Run(list);

            // Print out the results
            string output = string.Join(", ", list);

            //var summary = BenchmarkRunner.Run<Benchmark>();
            Console.WriteLine(output);
        }
Example #2
0
 public List <int> CreateIntForList() => CreateIntList.CreateIntForList(1, 10000);