如何纠正VS2012中的代码风格?

sil*_*lla 3 c# visual-studio visual-studio-2012

有时我在VS中有这样的东西

if (IsValid)
{
functionA();
  functionB();
  }
Run Code Online (Sandbox Code Playgroud)

嗯,这看起来不太好.我想选择这些字段(或我想要更正的字段)并让VS更正样式.有办法,不知怎的,我找不到任何东西

Raw*_*ing 8

Edit> Advanced> Format Document(或Format Selection)应该做了很多的工作适合你.

  • 或者您应该了解快捷键(Control + E + D) (3认同)