Automatic property creation, how to change braces layout
Hi,
Im using 4.5 and Im setting up ReSharper for our formatting standards.
When using ReSharper to generate a property I select a private variable for it to use but the code it generates looks like;
public string Line
{
get {
return _line;
}
set {
_line =
value;
}
}
How can I change the ReSharper formatting to;
public string Line
{
get { return _line; }
set { _line = value; }
}
Thanks
John
Please sign in to leave a comment.