Resharper 7 - Type Members Layout
Hi,
I'm trying to accomplish the following and i'm wondering if its possible or not.
Currently we have a list of fields like this:
private readonly ClassX _var1;
private readonly ClassA _var2;
private readonly ClassB _var3;
private ClassQ _var4;
private ClassZ _var5;
public event EventHandler<EventHandlerY> HandlerX;
public event EventHandler<EventHandlerY> HandlerY;
public event EventHandler<EventHandlerY> HandlerZ;
What we want is this:
private readonly ClassX _var1;
private readonly ClassA _var2;
private readonly ClassB _var3;
private ClassQ _var4;
private ClassZ _var5;
public event EventHandler<EventHandlerY> HandlerX;
public event EventHandler<EventHandlerY> HandlerY;
public event EventHandler<EventHandlerY> HandlerZ;
I've tried various things in the Type Members Layout but all i can accomplish is the former. Is it possible to enter new lines in the xml of the Type Members Layout? Is there another way to solve it?
Thanks in advance!
Please sign in to leave a comment.
Hi Mark,
As far as I know, there's no such possibility at the moment.
We apolgoize for the inconveniece.
Thank you!