Regarding this post, I have an assembly for csc.exe / doc, so I have an XML file for the assembly that contains documentation comments.
So, I have a
- MyAssembly.dll
- MyAssembly.xml
Now, looking at xml, it has
<member name="M:MyAssembly.IFoo.SetTimer(System.Int32,System.Double)">
where IFoo is the interface defined in the assembly, and SetTimer(int, double) is the method in this interface.
I can parse this line in xml, but before going this route, there is a library that I could use to go from the MethodInfo link to get documentation comments from such xml. Sandcastle was mentioned in one of the answers, but it all seems to be related to the MSDN-style documentation generator, and I could not find examples that would allow me to do what I am trying to do.
thanks
TheOtherGuy
source share