Visual Studio 2010 RC Intellisense doesn´t work

c#, intellisense, visual-studio-2010

Solution

EDIT: These are the options that should be enabled:

`Tools->Options->Text Editor->C#->General->Auto list members` `Tools->Options->Text Editor->C#->General->Parameter information` `Tools->Options->Text Editor->C#->Intellisense->Show completion list after a character is typed`

See my response to VS2010 RC - Is intellisense broken? How do I turn it on?:

Did you have ReSharper installed with Visual Studio 2008? ReSharper (in VS2008) turns off Intellisense explicitly in order to replace it with their own.

If this is the case, you can turn it back on with the options under `Tools->Options->Text Editor->[language]` (and sometimes also under the `Intellisense` node under each language).

For example, for C#, the first checkbox under `Tools->Options->Text Editor->C#->Intellisense` is "Show completion list after a character is typed". Make sure that is checked.

Problem

I installed VS2010 on my Windows 7 x64... The patch to fix Intellisense as well (http://connect.microsoft.com/VisualStudio/Downloads/DownloadDetails.aspx?DownloadID=26662)... But my C# Intellisense doesn´t work... It doesn´t crash, but nothing happens when I typing... Just if I press a Ctrl+Backspace it appears... In my Javascript file the Intellisense is working fine... Any idea? Thanks

Original source