Is there a custom documentation generator for C #? Unlike native XML documentation, which provides documentation for classes, methods, properties, the documentation I refer to here is lower level, that is, it documents the flow of a method.
for example, in this code
void SomeMethod(){
SomeCodeToDoX
SomeCodeToDoY
SomeCode
}
The documentation will capture the document: do X and doc: do Y and document Do X and Do Y as a stream inside the SomeMethod method
** I hope I posed the question clearly enough. If I do not ask for comment ask for clarification *
source
share