Skip to content

Instantly share code, notes, and snippets.

@jshinevar
Last active May 28, 2017 03:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jshinevar/3cd73460d495812514026ec8e58d0dda to your computer and use it in GitHub Desktop.
Save jshinevar/3cd73460d495812514026ec8e58d0dda to your computer and use it in GitHub Desktop.
//https://stackoverflow.com/questions/273313/randomize-a-listt
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;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment