Overriding properties peforms invalid formatting (#326)
Hi there
If I override a property by typing "override" and selecting the property
in the list that pops up, RS adds line breaks rather than having the
whole 'getter' expression on a single line (same for 'set', of course):
public override string PluginId
{
get
{
return base.PluginId;
}
}
Selecting the block and reformatting via Resharper corrects the
formatting to how it should be, so I guess my RS settings are basically ok:
public override string PluginId
{
get { return base.PluginId; }
}
I'm running RS 326 for the first time on a new machine - is this an
issue that was introduced recently or did I miss something in the options?
Thanks for your advice
Philipp
Please sign in to leave a comment.