Б[
Size: a a a
Б[
РС
РС
НП
R2
РС
R2
SB
РС
Б[
SB
НП
R2
Б[
SB
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;
}
}
list.Shuffle();PP
РС

РС
Б[