vote up 1 vote down star

Could someone please point me toward a cleaner method to generate a random enum member. This works but seems ugly.

Thanks!

public T RandomEnum<T>()
{
  string[] items = Enum.GetNames(typeof( T ));
  Random r = new Random();
  string e = items[r.Next(0, items.Length - 1)];
  return (T)Enum.Parse(typeof (T), e, true);
}
flag

3 Answers

vote up 7 vote down check
public T RandomEnum<T>()
{ 
  T[] values = (T[]) Enum.GetValues(typeof(T));
  return values[new Random().Next(0,values.Length)];
}

Thanks to @[Marc Gravell] for ponting out that the max in Random.Next(min,max) is exclusive.

link|flag
Thanks - mine was killing me! – paul.richardson Nov 26 '08 at 5:35
vote up 0 vote down

I'm not sure about c# but other languages allow gaps in enum values. To account for that:

enum A {b=0,c=2,d=3,e=42};

switch(rand.Next(0,4))
{
   case 0: return A.b;
   case 1: return A.c;
   case 2: return A.d;
   case 3: return A.e;
}

The major down side is keeping it up to date!

Not near as neat but more correct in that corner case.


As pointed out, the examples from above index into an array of valid values and this get it right. OTOH some languages (cough D cough) don't provide that array so the above is useful enough that I'll leave it anyway.

link|flag
marxidad accounts for this by returning an array index not the enum's value. I did the same I just took the scenic route! – paul.richardson Nov 26 '08 at 6:13
That could have clearer. The enum is generated by its position in the array not by its value. – paul.richardson Nov 26 '08 at 6:16
vote up 5 vote down

Marxidad's answer is good (note you only need Next(0,values.Length), since the upper bound is exclusive) - but watch out for timing. If you do this in a tight loop, you will get lots of repeats. To make it more random, consider keeping the Random object in a field - i.e.

private Random rand = new Random();
public T RandomEnum<T>()
{ 
  T[] values = (T[]) Enum.GetValues(typeof(T));
  return values[rand.Next(0,values.Length)];
}

If it is a static field, you will need to synchronize access.

link|flag
In my case it's just generating some defaults for a game - no loops at all. Thanks for the advice! – paul.richardson Nov 26 '08 at 5:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.