Can my enums have friendly names? [duplicate]
You could use the Description attribute, as Yuriy suggested. The following extension method makes it easy to get the description for a given value of the enum: public static string GetDescription(this Enum value) { Type type = value.GetType(); string name = Enum.GetName(type, value); if (name != null) { FieldInfo field = type.GetField(name); if (field != … Read more