Visual Studio 2010中可能有不同的编辑器样式吗?

时间:2013-03-20 14:29:43

标签: c# visual-studio-2010 styles

总之,我非常喜欢编写漂亮的代码,这里有一篇很棒的文章 the beauty of doom 3 source code我在visual studio之前一直使用不同的代码编辑器。 我喜欢紧凑的写作风格。 我不喜欢像

这样的空白线
public void my function(string s)
{                                          //almost empty line
   string n = domystuff();
   if (n=="blanc")
     {                                     //almost empty
        mycode("should start a row earlier on { line");
     }                                     //..
    else
     {
        ohno.notagain("another two blanc lines above and below else");
        Altough.it.compiles("equaly");
        myscreen.used = not.optimal;
     }
 }

如果代码编写得更好,那么它很好看,如果有很多白线读取的东西很好,那么白线就会破坏它。所以我想知道在VS2010中可以更改这种自动格式化吗?

1 个答案:

答案 0 :(得分:0)

作为一种语言,C#具有一组编码约定,C#程序员希望这些约定在项目之间相当一致。如果要使用One True Brace样式,请切换到Java。

如果您坚持做出奇怪的人,可以在工具→选项...→文本编辑器→C#→格式化中配置Visual Studio自动格式化程序。