Say, I have an MVC model
public class MyModel
{
[Display(Name = "Sophistically-named field", Description = "blah-blah")]
public int SophisticallyNamedField {get;set;}
}
Is there any way I can get field's name and description from annotation? I need to get it in C# code, not in Razor.