views:

18

answers:

1

Is there someway to get VS 2008 intellisense to default to Properties over Classes in a name collision?

Example:

Within my scope I have a property Foo, but I'm also using a class Foo. When writing code, if I start to type F o, VS2008 intellisense will think I mean the class Foo. I want it to think I mean the property Foo instead.

+1  A: 

Unfortunately no this is not possible. Customization of the priority of value categories like classes / properties is not supported

JaredPar