Islam
0
Q:

c# randomize a list

var shuffledcards = cards.OrderBy(a => Guid.NewGuid()).ToList();
1
private static Random rng = new Random();  

public static void Shuffle<T>(this IList<T> list)  
{  
    int n = list.Count;  
    while (n > 1) {  
        n--;  
        int k = rng.Next(n + 1);  
        T value = list[k];  
        list[k] = list[n];  
        list[n] = value;  
    }  
}
0

New to Communities?

Join the community