Not even sure if possible because can't find anything about that, i can find how to GET the current description written before program is executed but can't find a way to change (set/edit) the description of an enum when the program is already started, so if i have (just an example):
public enum MyColors {
[Description("This is green, like a cactus")]
Green,
[Description("This is red, like blood")]
Red,
[Description("This is blue, you know like water")]
Blue,
[Description("This is black, like the eyes of an alien")]
Black
}
How can i change the description during the program execution (while app is already started) or tell me "not possible" if it's not possible, thanks for your time.