I am opening files from a server ASP.net and the VB codebehind files, and my visual studio is not working correctly, Intellisense is dead and if i right click the \"Go to
Save your solution. Closing the VS2010 instance for this solution and re-oprning worked for me. Here I assume that Intellisense was working OK but stopped for some unknown reason without changing any default settings.
Prabhdeep
After uninstalling ReSharper, the squigglies that show up underneath a syntax error stopped showing up in the code editor.
This blog post helped me fix the issue.
Try this:
Close any open instances of visual studio, delete the folder 10.0 inside `C:\Users[username]\AppData\Roaming\Microsoft\VisualStudio\' and restart the visual studio. Issue will be fixed.
For me simply hitting Ctrl+Alt+Space to re-enable Autocompletion fixed it.
In my case, none of the above worked (although I discovered that sometimes the *.suo
file is the trouble maker - in those cases deleting it helps).
I fixed it successfully the following way: Let's assume your solution has the name MySolution
. Do the following:
MySolution.sln.DotSettings
(it is in the same folder as your MySolution.sln
file)XMySolution.sln.DotSettingsX
so VS won't read it)MySolution.sln
fileAnd afterwards Intellisense was working again just fine. I assume the file MySolution.sln.DotSettings
got corrupted.
Note: The file MySolution.sln.DotSettings
was created and checked in to TFS by a team colleague who had installed ReSharper. The issue occurred on a different PC without ReSharper where the same project was opened.
For the benefit of searchers, Nicks suggestion is good, but if you don't want to reset all your settings, you could follow the recommendation in this post.
It states - "go to "Tools | Options | Text Editor | C# | General and check the "Auto list members" and "Parameter information" checkboxes"