What is the use of XML comments in C#

前端 未结 6 1857
没有蜡笔的小新
没有蜡笔的小新 2020-12-19 11:36

What is the use of XML comments in C# than signal line and multiple line comments.

i.Single line
Eg:
//This is a Single line comment

ii. Multiple line (/* *         


        
6条回答
  •  时光说笑
    2020-12-19 12:20

    XML comments, starting with ///, will get picked up by IntelliSense and it will get shown in a pop-up when looking at it from elsewhere. There is a MSDN page explaining how it works.

    They will also be picked up by numerous tools that build documentation files, etc.

提交回复
热议问题