bug c# XML comments dosn't show params in vscode and visual studio

0

When I type "///" intellisense adds an XML comment. /// < summary > /// this function writes the value of an object to a file /// < /summary > /// < param name = "objects" > input parameter of object type < / param > /// < param name = "path" > input parameter = file path WriteInFile (List < object > objects, string path) Intellisense shows me the name and description of the function "this function written the value of an object in a file "The problem is that intellisense should show me the names and types of the parameters. It should write "object type input parameter" but does not do it.

mikedali

Posted 2019-11-08T09:06:14.970

Reputation: 1

No answers