10 lines
322 B
C#
10 lines
322 B
C#
public static void KnuthShuffle<T>(T[] array)
|
|
{
|
|
System.Random random = new System.Random();
|
|
for (int i = 0; i < array.Length; i++)
|
|
{
|
|
int j = random.Next(i, array.Length); // Don't select from the entire array on subsequent loops
|
|
T temp = array[i]; array[i] = array[j]; array[j] = temp;
|
|
}
|
|
}
|