How to change behaviour of braces in property get
Hi,
Resharper 4.5 for C#
When i type the following (A) it renders as (B) when I type the closing brace on the "get".
How can i stop resharper from moving my braces inline with the "get". When i type out this property, I usually need to type more than one line of code in it. So i want the braces as (A).
My settings in resharper basically all say (for IF, WHILE, FOR, CLASS, VOID, FUNCTION) that braces should always be on a new line. Also, I have not changed many options so it is most probably a default setting.
//-- (A)
public property Foo
{
get
{
}
}
//-- (B)
public property Foo
{
get { }
}
thank you
Please sign in to leave a comment.
no replies?!