In VS2008, you could write, for instance,
dim enumValue as MyEnum
enumValue =
.. and then as soon as you typed the =, you’d get a list of possible values of MyEnum.
With VS2010, you have to type
dim enumValue as MyEnum
enumValue = MyEnum.
… before getting the list on typing the final .
This makes for a lot more typing and seems to be a retrograde step … is there an option I’m missing? (I have ‘Auto List members checked in the Text Editor options under ‘Basic’).
Yes, you’re not the first to be annoyed by this. This looks to be likely to get fixed in SP1 according to this feedback item.