Disable IntelliSense in Visual Studio 2015

久未见 提交于 2020-01-01 02:17:22

问题


Is there a way to disable IntelliSense in Visual Studio 2015? The information I find are all for the older version of VS, but not for VS 2015.


回答1:


It seems to be impossible to really disable IntelliSense officially. When switching it off via Tools->Options->Text Editor->C/C++->Advanced->Disable IntelliSense the database is still created. I.e. there is still a project.sdf next to your project.sln.

I found two ways of completely disabling it:

  1. On project level: Delete project.sdf and create a folder with the same name. Now Visual Studio will give you a warning when you load the Solution that it can not create the Intellisense database
  2. On system level: Uninstall Microsoft SQL Server Compact 4



回答2:


Go to:

 Tools->Options->Text Editor->All Languanges

and there un-tick:

Auto List Members 

and

Parameter information


来源:https://stackoverflow.com/questions/36065206/disable-intellisense-in-visual-studio-2015

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