I want to decorate a VB.NET class with meta data to describe additional information associated with the properties of the class. Also I need this information to be visible through reflelction. Any suggestions? Is this even possible for me to accomplish? Thanks.
I want to decorate a VB.NET class with meta data to describe additional information
Share
You can annotate most of C#/VB entities with attributes.
You can develop your own (by deriving from System.Attribute) or reuse existing