I can’t find key binding to expand all possible cases in switch,
eg. have switch with enum argument, in Borland C++ i doing this with TAB key
while switch code is selected.
I want to do this in Visual Studio 2010.
Can anyone help me?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It C++ it’s not possible to do this. The IDE just doesn’t have support for that operation.
In C# you can do this with the switch code snippet:
This will expand out the known cases into the IDE.