Reputation: 17498
I've documented my function declaration like so:
/// <summary>
/// The summary blah blah blah
/// </summary>
/// <param name="arg1">The first argument</param>
/// <param name="arg2">The second argument</param>
/// <returns>an integer</returns>
int MyFunction(int arg1, int arg2);
When I hover over the function in visual studio 2015 enterprise, the tooltip shows only the summary. I want to see the description for the arguments and return value, how can I see this?
Upvotes: 1
Views: 499
Reputation: 768
The Parameter descriptions only appears when you are typing in arguments for that function. Just hovering over a pre-written method will only show the function Summary
Upvotes: 1