Files
2024-09-22 21:45:37 +02:00

21 lines
357 BLFS
C#

using System;
using System.Collections.Generic;
internal static class Helpers
{
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;
}
}
}