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').