How to Access Enum value using its custom Attribute?
public enum Locations
{
[Property ("job-view")]
[Title ("analyics-job-view")]
JobViewValue
}
I have value of "Property" Attribute i.e. job-view
How to access enum value (JobViewValue) using "Property" attribute?