Skip to content

Instantly share code, notes, and snippets.

@ShutovKS
Created June 15, 2024 14:36
Show Gist options
  • Save ShutovKS/800d455ae572685a624b468cefbcc924 to your computer and use it in GitHub Desktop.
Save ShutovKS/800d455ae572685a624b468cefbcc924 to your computer and use it in GitHub Desktop.
Getting random value from enum in C#
public static class Extensions
{
public static int RandomIndex<T>() where T : Enum
{
var values = Enum.GetValues(typeof(T));
return new System.Random().Next(values.Length);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment