Is there a setting in R# to format chained method to start at the same character of the class instantiated.
What I want:
var foo = new FooDataBuilder()
.WithDate(myDate)
.WithBar(myBar)
.Build();
What R# is giving me:
var foo = new FooDataBuilder()
.WithDate(myDate)
.WithBar(myBar)
.Build();