Visual Studio not showing IntelliSense descriptions anymore

ε祈祈猫儿з 提交于 2019-11-28 20:33:15
Lucas Trzesniewski

This looks more like a framework issue rather that a VS/R# issue. If neither one of them can load the description strings, it probably means the description XML files are missing.

Check if you see the XML files in:

C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5.2

If you don't, then reinstall the framework to fix the issue.

Link to .NET Framework 4.5.2 Developer Pack: https://www.microsoft.com/en-us/download/details.aspx?id=42637

Try to activate the 'Statement completion' checkboxes in Options > Text Editor > All Languages > General as in the following screenshot:

Also, check that your project is referencing the libraries in the C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\ folder. You can do that by selecting each project reference and viewing it in the property window, or by editing your project file with a text editor.

I had one case where my project had references to the actual runtime framework located at C:\Windows\Microsoft.NET\Framework\ which does not have the associated .xml files.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!