Is there a standard (like phpdoc or python's docstring) for commenting C# code?

前端 未结 6 1716
遇见更好的自我
遇见更好的自我 2021-01-03 20:12

Is there a standard convention (like phpdoc or python\'s docstring) for commenting C# code so that class documentation can be automatically generated from the source code?

6条回答
  •  梦毁少年i
    2021-01-03 20:55

    I was always told to use block comments opened with 2 or more asterisks do delimit documentation comments.

    /**
    Documentation goes here.
    (flowerboxes optional) 
    */
    

提交回复
热议问题