Usually in visual studio adding /// before a type or type member generates a summary. However, when I try using /// it only completes namespaces, classes and entry points not methods or functions. This issue only occurs in recently created solutions with older ones behaving as expected.
/// <summary>
/// Generates summary for entry point
/// </summary>
static void Main()
{
/// Doesn't generate summary.
void ExampleVoid() {
...
I have recently adjusted some Intellisense options however, I haven't found any options that would have caused this.
Generate XML documentation comments for /// is enabled
Edit: I've also noticed that intellisense descriptions aren't showing for methods or system classes, adjusting statement completion isn't fixing this. Reinstalling the framework may be the solution.