sledgemapper/Sledgemapper.Shared/ExtensionMethods.cs
Michele Scandura 7e3e645fc9
All checks were successful
continuous-integration/drone/push Build is passing
fixes and cleanup
2021-09-21 11:09:26 +01:00

25 lines
No EOL
510 B
C#

using System;
using System.Collections.Generic;
namespace Sledgemapper.Shared
{
public static class ExtensionMethods
{
private static Random rng = new();
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;
}
}
}
}