Search code examples
c#xmlcommentsxml-documentation

XML documentation comments in a separate file


I find a lot of topics that describe the way through

/// <summary>
/// 
/// </summary>

But when I give such a description to several functions of the class, it starts to distract and disturb me. Can I put it in a separate file or hide it? To see only in IntelliSense.


Solution

  • You can hide those comments by clicking the small [-] icon at the left hand side.

    enter image description here

    If you want to hide them all at once, this neat Visual Studio Extension called NoComment can help you.