Visual Studio 2015 Curly Brace格式:If,Else If,Else

时间:2015-12-31 20:12:21

标签: c# formatting visual-studio-2015

我最近升级到Visual Studio 2015(更新1),并且按照我希望的方式配置了一些东西,但是我对花括号的格式化有点麻烦!我假设第二个代码示例是更接受的约定,但我似乎无法正确设置我的设置。我在这里做错了什么?

Visual Studio目前正在自动格式化我的代码,请注意 else {

    public static string Gender(string x)
    {
        if (x == "M")
        {
            return "Male";
        }
        else if (x == "F")
        {
            return "Female";
        }
        else {
            return "Unknown";
        }
    }

我希望我的代码能够像这样自动格式化

    public static string Gender(string x)
    {
        if (x == "M")
        {
            return "Male";
        }
        else if (x == "F")
        {
            return "Female";
        }
        else
        {
            return "Unknown";
        }
    }

1 个答案:

答案 0 :(得分:0)

我有Visual Studio 2015 Update 1,并将其设置为格式,就像在第二个代码段中一样。

一个重要的设置是取消选中“将其他地方放在新线上”选项。

如果这还不够,我发布的屏幕截图包含我的所有设置(http://imgur.com/XPvH8pI

enter image description here