Reputation: 17226
I've got a fresh install of VS 2008 Standard and I've installed DevExpress DXPerience 2008 with CodeRush! and for some reason, my intellisense decided to half-work.
I have:
class Person
{
public string FirstName { get; set; }
}
I can type:
Person p = new Person();
p.
... and intellisense will show none of the members for Person, UNLESS I delete the '.' and type it again. Then it'll work as I always expect it.
This happens among objects/projects/solutions consistently. I'm betting that it's a VS or CodeRush! setting but I'd like to rule out VS before I try to re-install CodeRush! (takes a while).
Upvotes: 1
Views: 1350
Reputation: 4274
You're correct, it's a CodeRush setting. Follow these steps to get to the IntelliSense options page:
In the tree view on the left, navigate to this folder:
Compatibility
Hope this helps.
Upvotes: 1
Reputation: 1161
Please take a look at the following settings in your Visual Studio:
Are they all activated? If not, please do so.
Upvotes: 4