Visual Studio缩进与方法链和& Lambdas(=>)

时间:2017-08-29 11:57:30

标签: c# visual-studio xamarin-studio

我无法在Visual Studio(或Xamarin Studio)中设置格式化选项,以便在使用lambdas时很好地缩进。

这就是我想要:所有方法排队,方法体缩进

prop
    .DistinctUntilChanged()
    .Where( foo => {
        // I want this tidy indentation
    })
    .Subscribe( foo => {
        // I want this tidy indentation
    })

这就是我得到:方法排队但是身体没有

prop
    .DistinctUntilChanged()
    .Where( foo => {
    // Urgh... I get this messy indentation
})
    .Subscribe( foo => {
    // Urgh... I get this messy indentation
})

如何保持自动缩进并获得所需的格式?

0 个答案:

没有答案