I am using Doxygen to generate documentation for our API, written in C#. However, it exposes private/protected members. Is there a way to hide those?
I figured out how to hide files: EXCLUDE = List of file names
Yet, I need more granularity and thus shield users from unnecessary API noise. A sample Doxygen file would be appreciated as well as tips/tricks.
What tools do you use to generate API from the source code?
I feel somewhat left in the 18th century as I use Doxygen in C# by way of C++.
I don’t know how well C# is supported by Doxygen.
For hiding private members, you change
Doxyfileconfiguration file as following:Many other options can be set for various kinds of extracting/hiding code elements, e.g., citing
Doxyfileitself: