Visual Studio切换语句格式

时间:2009-03-04 21:27:35

标签: visual-studio

我正在使用Visual Studio 2005.它总是希望像这样格式化switch语句:

switch (thing)
{
case A:
  stuff;
  break;

case B:
  things;
  break;
}

有没有办法让它缩进这样的情况?:

switch (thing)
{
  case A:
    stuff;
    break;

  case B:
    things;
    break;
}

2 个答案:

答案 0 :(得分:41)

转到此处:

  

Tools > Options > Text Editor > C# > Formatting > Indentation > Indent case labels

答案 1 :(得分:0)

工具|选项|文字编辑器| c# - >选中'Ident block contents'复选框。