Is there a way to generate XML documentation for private members? Be default it only generates it for public members, which is correct for published code but not for code only used within a company.
A:
My advise is to write the xml documentation together with code. It doesn't take much time and also I have found that this approach helps me organize my code structure better.
Rumen Georgiev
2009-01-06 07:50:19
Right: tool generated XML documentation is almost never useful. Or do you think a method Add(Product p) with an XML documentation comment of "Adds the product" (and <param name="p">Product to add</param>) is worth its bytes...?
peSHIr
2009-01-06 09:32:29
(Ehh... the documentation comments, not the method itself. Duh!)
peSHIr
2009-01-06 09:33:14
For someone who has no idea of the method the stupid comment will make it obvious there is nothing special ;). But your point is right, sometimes comments are just waste of time and bytes.
Rumen Georgiev
2009-01-06 09:38:01