Sushanta Meher

Sushanta Meher

  • NA
  • 29
  • 969

how to set display name on a property in c#?

Jul 18 2018 7:24 AM
I have a class like this:
class Person
{
public uint Age
{
get{...}
set{...}
}
}
Thus a PropertyGrid displays the Person.Age property as "Age".
But I want to display it in chinese, but not the english word "Age", and I
don't want to change this class's definition .
Is it possible?
Thank you very much!

Answers (1)