Så här kan du göra:
om du har definierat din enumeration t.ex. så på följande sätt
public enum Thing {
[Description("Foo thing")]
Foo,
Bar,
[Description("Baz thing")]
Baz
}
så kan du lista attributena på följande sätt
Thing foo = Thing.Bar;
FieldInfo field = foo.GetType().GetField(foo.ToString());
object[] attrs = field.GetCustomAttributes(typeof(Description), false);