2
namespace Guilds
{
  public class Wizard
  {
    public void Wear(IClothing clothing)
    {
      Console.WriteLine("Puts on the {Robe} and {WizardHat}".Fmt(clothing));
    }

    IClothing _clothes;
    IWeapon   _weapon; // <== I want my fields added at the bottom of the class!
  }
}

我知道,如果您将字段放在底部,它也会开始将后续字段添加到类的底部。即使对于第一个字段,我也希望将其作为默认行为。

此行为通常在按下 Ctrl + 时触发。在未声明的字段之上。

4

1 回答 1

4

使用Regionerate并创建您自己的格式模板。它是与 Visual Studio 一起使用的免费工具。

编辑:您也可以使用CodeMaid,因为似乎 Regionerate 和 VS2012 不能一起工作(虽然我根本没有测试过这种组合。我有 VS2010)

编辑在我之前的回复中添加更多内容。CodeMaid 真的很酷,你可以在配置中指定布局。同样在配置中,您可以指定该文件应在保存时格式化。这样,您可以随心所欲地编写代码,并在按下 Ctrl+S 时将其格式化!我是 CodeMaid 的一名快乐用户。我也在使用 Visual Studio 2013。

于 2013-03-27T20:25:29.017 回答