gpt4 book ai didi

c# - 有没有办法指示 visual studio 在类的底部而不是顶部自动添加字段?

转载 作者:行者123 更新时间:2023-11-30 20:59:01 24 4
gpt4 key购买 nike

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 + 时触发。在未声明的字段之上。

最佳答案

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

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

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

关于c# - 有没有办法指示 visual studio 在类的底部而不是顶部自动添加字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15666817/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com