Skip to content

Instantly share code, notes, and snippets.

@llCorvinSll
Created November 27, 2013 12:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save llCorvinSll/7675002 to your computer and use it in GitHub Desktop.
Save llCorvinSll/7675002 to your computer and use it in GitHub Desktop.
Get human names for enum values, if they are defined by [Display(Name = "name")]
Func<FakeEnumType, string> getName = en =>
{
var type = typeof(FakeEnumType);
var memInfo = type.GetMember(en.ToString());
var attributes = memInfo[0]
.GetCustomAttributes(typeof(DisplayAttribute), false);
return ((DisplayAttribute)attributes[0]).Name;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment