Open jnm2 opened 7 years ago
VS 15.5p4, apologies if there's an existing issue I failed to locate.
I frequently have code like this:
private bool someProperty; public bool SomeProperty { get => someProperty; set => Set(ref someProperty, value); }
And need to add code to the setter, so I use the block body code action. This results in:
private bool someProperty; public bool SomeProperty { get => someProperty; set { Set(ref someProperty, value); } }
I would expect set to be on its own line.
set
we'd take a small community fix on this.
VS 15.5p4, apologies if there's an existing issue I failed to locate.
I frequently have code like this:
And need to add code to the setter, so I use the block body code action. This results in:
I would expect
set
to be on its own line.