C# IntelliSense for enum type

Viewed 1090

I recently moved from VB to C# and I miss the way VB handle IntelliSense behavior for enum types.

In VB, when you assign or compare am enum value, the IntelliSense will open the list of enum values directly.

In C#, the IntelliSense will only select the enum type in the list, forcing me to type a "." to get the list of enum values.

Is there a way to reproduce VB enum behavior in C# (without third party plugin)?

1 Answers
Related