in CodeRush, is there a way to auto-fill a SELECT CASE statement with the available enumerations ?
So, given this enum declaration (or one with a lot more enumeration options)
Public Enum eMailTransmissionMethods
unknown = 0
IIS
AutoEmailer
End Enum
I want to build the following framework.
Select Case method
Case eMailTransmissionMethods.IIS
Case eMailTransmissionMethods.AutoEmailer
Case eMailTransmissionMethods.unknown
End Select
Simply:
CodeRush works out the type of the identifier on the clipboard, and creates a branch for each value that the enumeration can hold.
Another, more complete, version of this answer is detailed here on my blog complete with pics
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With