我无法在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
})
如何保持自动缩进并获得所需的格式?