EditorBrowsable / Browsable
.NET (Core and Framework)
1
Posts
1
Posters
0
Views
1
Watching
-
I am designing a project which requires that users can create their own plugins, by inheriting a class. The class they inherit from inherits Form, and I am wanting to make it a bit more simple for the users to find the pertinent properties/methods of my class, and not have to dig through all the Form members. The only way to do this is by shadowing all the members of Form and using EditorBrowsable/Browsable attribute right? Has anyone ever done anything like this in a different way?