-1

Is there any native way of documenting my code in C#? Something similar to javadoc in java and different of doxygen or Sandcastle.

danteMesquita
  • 87
  • 1
  • 7
  • I use [GhostDoc](https://submain.com/products/ghostdoc.aspx), they have a free version, but it's well worth the couple bucks to buy it. – Ron Beyer May 10 '19 at 17:36
  • Welcome to StackOverflow. You might benefit from using "guided mode" next time you ask a question, to help ensure you include the right details to get a better answer. – k3davis May 10 '19 at 17:42
  • @RonBeyer, muti thanks for the comment, I'll analyze the tool! – danteMesquita May 10 '19 at 18:47

1 Answers1

3

I'm not familiar with JavaDoc, but you can type /// above classes and methods in Visual Studio to generate summary code blocks. Further you can enable XML documentation in your project properties so that summary data is included in class libraries, Swagger auto-generated API documentation, etc.

k3davis
  • 985
  • 12
  • 29