"javadoc" in c #

I searched online to find out how to "javadoc" in a C # console application. All articles relate to the C # web form in this case, /// will be javadoc. What is the way to do this if you are creating a console application in visual studio?

thanks

Edit: I remember that he had to deal with @ before the method

+6
source share
1 answer

Three slashes begin with a document:

/// <summary> /// My method does stuff. /// </summary> public void MyMethod() { ... } 

You can then change the project properties to output XML files containing documentation for other developers, or use an application like SandCastle to create full-fledged documentation web pages.

+7
source

Source: https://habr.com/ru/post/946966/


All Articles