Restarber Method: End of Line Formatting Style

Resharper has a lot of formatting options, but I was unable to find any layout options for method labels.

The goal is to keep this kind of formatting:

CallFooMethod(
    parameter1,
    parameter2,
    parameter3
);

      

But after typing a semicolon or clearing the call, I always get this:

CallFooMethod(
    parameter1,
    parameter2,
    parameter3
    );

      

Does anyone know how to solve this? Maybe there is a way to interfere with the formatting process with some ReSharper API for extensions?

+3


source to share





All Articles