I am currently switching from Resharper to CodeRush.
One thing I used a lot in Resharper is the "smart code completion" (Ctrl+Alt+Space) so that in e.g. s开发者_如何学编程witch case I could hit the shortcut and Resharper would automatically provide a list of the type that I was switching (typically enums).
Does Coderush have a similar feature?
Copy the enum variable you wish to switch on, to the clipboard.
Type sw[space]
CodeRush will build you a switch statement with cases for each enum value.
精彩评论