in CodeRush, is there a way to automatically populate a SELECT CASE statement with available enums?
So, given this enum declaration (or one with a lot of enumeration options)
Public Enum eMailTransmissionMethods unknown = 0 IIS AutoEmailer End Enum
I want to create the following structure.
Select Case method Case eMailTransmissionMethods.IIS Case eMailTransmissionMethods.AutoEmailer Case eMailTransmissionMethods.unknown End Select
source share