How to change the DisplayNameAttribute on runtime to use in a Property Grid C#
- by Apoc
I am wondering how to change the DisplayNameAttribute on runtime, I want the displayName to be Feet instead of Meters in my property grid when I do some conversions, is that possible?
[DisplayName("Meters")]
public double Distance
{
get{return distance;}
}