Roland
Roland

Reputation: 5234

How does the return info of the XML documentation show?

I love the XML documentation feature, the <summary> always shows up, and recently I found out how to make the function argument info in <param> visible in Intellisense by setting an Output Path in the Build tab of the property page of a class project or in web.config for the Web project. But so far I have not seen any benefit of writing documentation in the <returns> tag. How do I make this visible in Intellisense?

Upvotes: 0

Views: 84

Answers (1)

Xavier Poinas
Xavier Poinas

Reputation: 19733

Unfortunately, the <returns> tag won't be shown by IntelliSense.

It is only shown in the Object Explorer. It is also exported to the XML documentation (via options in the Build tab), so it can be used by documentation generators.

Upvotes: 1

Related Questions