I would like to know which one is the best material that I can hand out to my students about "C# comments".
|
|
This is quite interesting to do with the xml comments: http://thoughtpad.net/alan-dean/cs-xml-documentation.html These get read by sandcastle too... :o) |
||
|
|
|
|
Take a look at this question I asked on SO about code documentation. There's some interesting insight in there that you may wish to repackage. http://stackoverflow.com/questions/288298/code-documentation-how-much-is-too-much |
||
|
|
|
|
Something that I read a while ago (and have lost track of where) is:
|
||||
|
|
|
This Post by Jeff Atwood on his blog Coding Horror goes into the purpose of comments in general. Something you might think is 'duh' really isn't -- especially in the 'real world' when you see comments like the one below:
And of course, there's the corollary to that post: Coding Without Comments. |
||
|
|
|
|
Inside VSComments are relatively simple. You can use for single line :
You can use for multiple line:
For method you can use :
Outside VSWhen you go in the Project Property you can output all comments into XML and manipulate them. Good practiceComments should not be used to describe WHAT the code do but WHY or HOW if it's not clear. |
|||
|
|
|
|
Without a doubt it must be Strunk and White. |
||
|
|
