How do I add a text description for my property?
My code :
private bool _Space
Have a look at the Description Attribute:
[Description("This is the description for SpaceKey")]
public bool SpaceKey { get; set; }
You can additionally use the Category Attribute to specify the category of the property:
[Category("Misc")]
[Description("This is the description for SpaceKey")]
public bool SpaceKey { get; set; }