c# Intellisense VS2013 tooltip doesn't show XML comments (i try all)

1.2k views Asked by At

I read all questions about intellisense problems but my intellisense doesn't work.

  • Visual Studio Ultimate 2013
  • I don't use any extension like Resharper, ghostdoc and so on

All XML documentation files about custom and not custom classes are inside starter project's /bin folder . (Build -> generate XML doc is ON) bin xml files

  • I have all documentations browsable via Object Browsers
  • Intellisense doesn't show tooltip information about .NET classes/EF/Identity too enter image description here
  • Intellisense shows tooltip information only about summary custom classes but doesn't show parameters / returns etc.. enter image description here Tools -> Options -> Text Editor -> C# -> Params info and Auto List Members are checked

So, i don't know where is the mistake :/ If someone know i appreciate very much. Thanks for your time

1

There are 1 answers

0
JacekT On

I noticed the same today, but I believe that the parameters description should apear when you start typing the parameters (when you open the first bracket, not when you start typing the method name). For example: type "checkTipologia(" - now the parameter should be visible in intellisense. Btw: it is a good practice to name methods with PascalCase. CheckTipologia instead of checkTipologia.