Code Insight (IntelliSense)

I am trying to add a description to the functions that I developed - I want this description to appear in the code view when another developer uses my units or when a user uses the API / COM to connect and uses our software. At the moment, everything that they see, for example, the name of the function and the type of the return value, but they have no idea what the function does.

in C # you use XML tags.

+3
source share
2 answers

Marco Cantu is a great blog post on how to use the same XML tagging system that Visual Studio uses to configure HelpInsight.

+3

, , :

    /// <summary>
    /// 
    /// </summary>
    /// <param name="par1"></param>
    /// <param name="bla"></param>
    /// <param name="foo"></param>
    /// <returns></returns>

( / , )

+1

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


All Articles