I have Resharper installed with mainly default settings. Currently, I'd like my multi-line lambda expressions to look something like this:
foobarclass.biz.baz.Event += (s, e) =>
  {
    foo.Bar.DoThings.Whatever();
  };
However, Resharper "helpfully" will reformat my code to be like this:
foobarclass.biz.baz.Event += (s, e) =>
                                 {
                                     foo.Bar.DoThings.Whatever();
                                 };
And in some cases, will also break up long statements so it ends up looking like this:
foobarclass.biz.baz.Event += (s, e) =>
                                 {
                                     foo.
                                        Bar.
                                        DoThings.
                                        Whatever();
                                 };
As you can tell, this auto-formatting makes code a lot less readable. How can I fix this kind of behavior?
Try unchecking:
RESHARPER -> OPTIONS -> C# -> Formatting Style -> Other -> Indent Anonymous Method Body
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With