How to add documentation to an undocumented production library

I use a production library in my project (namely itextsharp), this library does not come with intellisense documentation.

I would like to build a (partial) documentation project.

Is this possible without access to the source code?

+6
source share
1 answer

I think that intellisense data for external libraries is defined in an XML file that should be sent next to the specified library. It should also have the same name, but the xml extension instead of the dll.

There are tons of XML tags that Intellisense expects that are documented in msdn . In addition, some open source libraries come with documentation such as Unity, which will give you a “working” example of such an XML file. You can find an example here on github

0
source

All Articles