22

I installed the ReSharper evaluation version and uninstalled it. Afterwards Visual Studio's Intellisense stopped working. I have restarted computer but I still have this problem.

Can anyone please help me here?

I am using Visual Studio 2005. Thanks.

wonea
  • 4,783
  • 17
  • 86
  • 139
pradeeptp
  • 2,131
  • 6
  • 29
  • 39

8 Answers8

39

Try opening Visual Studio Command Prompt and entering:

devenv.exe /ResetSettings
Gordon Bell
  • 13,337
  • 3
  • 45
  • 64
  • 1
    Thanks Gordon, Resetting the dev evn with the following command fixed the problem. devenv.exe /ResetSettings – pradeeptp Feb 09 '10 at 07:24
  • Be sure to export any important settings you wish to keep before running this command. However, you may want to test, BEFORE restoring these settings. – Chiramisu May 21 '12 at 17:21
16

Try going to Tools > Options > Text Editor > C# and checking all of the options under Statement completion. I think Resharper disables these upon installation.

Ben Hoffstein
  • 102,129
  • 8
  • 104
  • 120
5

Sometimes deleting the ncb file helps. Go to your solution directory and find the sln file, there will also be a file with the same name and the extension ncb. Make sure Visual Studio is closed (at least don't have that project open) and then delete that file. Don't worry Visual Studio will rebuild it for you.

Matt Price
  • 43,887
  • 9
  • 38
  • 44
3

The devenv.exe /ResetSettings was the only thing that worked for me. The full path in command prompt is as follows (for VS 2008)

C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE>devenv.exe /ResetSettings

took me a while to find so I thought I'd post this to help

Simon
  • 661
  • 5
  • 15
1

Disable updating intelliSense like in this article: http://amastaneh.blogspot.com/2007/11/disable-updating-intellisense.html Eventhough for old version seems to work for me.

ivan40
  • 11
  • 1
1

devenv /ResetSettings worked after uninstalling ReSharper. I did not have to do a repair. I did verify that the settings were checked under Text Editor > C#, but ResetSettings was the only thing that worked.

1

You could try to reset your Visual Studio setting by

  1. End Process devenv.exe from Tast Manager if it is running .(It can close your Browser and Visual Studio)
  2. Run devenv /resetuserdata from Start -> Run

Hope It can help you.

0

I would try a "repair" on the installation first. Control Panel, Add/Remove Programs, select Microsoft Visual Studio 2005, click "Change/Remove". It will load up the install dialog and give you the option to do a "repair".

YMMV, but at least it should reset a lot of the VS resources to their "fresh" state.

Guy Starbuck
  • 21,603
  • 7
  • 53
  • 64