How to insert blank line between sections when rearranginng code?

Answered

Hi. I was set up my File Layout in the Rider and it works great when I rearrange code. But sometimes it "glues" 2 members of 2 sections (entities in File Layout XML structure) and members of sections become visually united. Is there any way to insert a new line between entities or something like that?

For example, I have 2 logical sections - properties and consts. And have the code like that

private const int Test = 1;

private int MyAnotherProp {get;}
public int MyProp {get;}

What I expect

public int MyProp {get;}
private int MyAnotherProp {get;}

private const int Test = 1;

What I have

public int MyProp {get;}
private int MyAnotherProp {get;}
private const int Test = 1;

2

Please sign in to leave a comment.