Hi all!
I want to document my source (C# sources), indeed I use XML documentation tags defined. How I can define by specific tags?
For example I use a lot Design by Contract assertions. I'd like to have documentation sections for preconditions, postconditions, invariants... It should be desiderable to write documentation like:
/// <precond>arg != null</precond>
/// <postcond>return > 0</postcond>
Since I'm not an XML guru, someone of you (gurus) coould advice me?
I tried to use < include >, but it's impossible (to me) to have documentation built correctly.
Thank you very much