Visual studio 2010 Switch statement generation by enum

后端 未结 3 1495
失恋的感觉
失恋的感觉 2021-02-18 15:38

Is there any way to get generation of switch statements by enum?

For example if I have big enum and I have method with has parameter enum, then I need to code switch sta

3条回答
  •  南方客
    南方客 (楼主)
    2021-02-18 16:03

    Visual Studio already does this. Type switch, tab to complete that snippet, type the enum name and you'll get the case statement autogenerated.

提交回复
热议问题