Possible Duplicate:
Should I document my private methods?
Is it good practice write comment for private fields and private methods? I've write a simple library and I don't really know if add comment for my private fields or not.
Possible Duplicate:
Should I document my private methods?
Is it good practice write comment for private fields and private methods? I've write a simple library and I don't really know if add comment for my private fields or not.
If you have something relevant to say, it is a great idea to document it even for private members, as a guideline for future maintenance of the class. But boilerplate comments like "Gets or sets the Foo property" is pure noise for private code IMO.