Resharper code format linebreaks
- by mizipzor
Im trying to setup the code formatting in ReSharper. Limiting each line to a maximum count of characters, it seems to want to place casts on a separate line. Like so:
string mystring =
(string)
MyStringConverter.convert(toconvert, typeof(string), null, null);
I cant seem to be able to find the correct combination of settings to not have this on three lines. Im looking for something like this:
string mystring = (string) MyStringConverter.convert(
toconvert, typeof(string), null, null);
Where the linebreak occurs is not that important, I guess I cant be to picky when I want to limit the line length. But three lines is a bit much.
Does anyone know the/any correct combination of settings to make it only cut the line once?