I need to randomly \'sort\' a list of integers (0-1999) in the most efficient way possible. Any ideas?
Currently, I am doing something like this:
bo
itemList.OrderBy(x=>Guid.NewGuid()).Take(amount).ToList()