Skip to content

Instantly share code, notes, and snippets.

@IanWold
Created May 18, 2014 01:12
Show Gist options
  • Save IanWold/0570dbead18107d18210 to your computer and use it in GitHub Desktop.
Save IanWold/0570dbead18107d18210 to your computer and use it in GitHub Desktop.
static T GetRandomValue<T>(this T[] array)
{
return array[new Random().Next(0, array.Length)];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment