This is my enum.
public enum ContractType
{
[Display(Name = "Permanent")]
Permanent= 1,
[Display(Name = "Part Time")]
PartTime= 2,
}
I try to get display name using below code.
string x = Enum.GetName(typeof(ContractType), 2);
But it is return "PartTime" always. Actually I want to get the name of display attribute. For above example x should be assigned Part Time
I saw there are solutions which having huge code. Doesn't this have a simple/one line solution?
Please show me a direction.