Good day! The task is as follows: there is an interface (for example, ITemplateGenerator) and classes are inherited from it. Each of these classes has its own methods implemented and there is a description of these methods (implemented with the help of tags, etc.). It is necessary to collect documentation on these functions in html or doc. She found that when compiling the solution, XML-ki are formed and you can extract information from them. But the fact is that the solution is very large and these classes are scattered in different places and how to find them all is very problematic.

  • Please add sample code to your question. - 0xdb
  • Did not quite understand the essence of the issue. You need to find and collect in html all the xml files of the documentation? - V. Dmitriy
  • And doxygen will not help you? And what does the xml compiler generate? - 0xdb
  • That's it that not all the xml files of the documentation, but only those that contain information about the methods of classes inherited from one interface. Unfortunately, I can not provide the code - Alexandra
  • one
    You can try a reflection on the project builds, find all the classes that implement this interface. Then from the xml-documentation pull the necessary info. Difficult, but I do not know how. - Alexander Petrov

0