I have a large class that exposes many commands. When I create documentation for the class the methods are sorted alphabetically, but I would like to have them grouped by functionality. Is there a way (using Sand Castle Helpfile builder of DocFx) to accomplish this?
Asked
Active
Viewed 150 times
1
-
you should probably look in the documentation of those libraries. You can sort functions by many ways: `Attributes, List
{nameOf(Func1)}` stuff like that. if the libs dont provide a solution you might wanna use a different lib, or sort the generated HelpFiles afterwards with some parsing. Or just write your own HelpFile generator – Charles Jan 05 '20 at 19:15 -
You could declare an interface for each functionality group and add the doc comments to the interfaces. Of course the class would implement these interfaces. – Olivier Jacot-Descombes Jan 05 '20 at 19:15