vote up 1 vote down star
1

Is it possible to change the way that Resharper formats properties?

I don't like:

public string Foo 
{
    get 
    {
        return bar;
    }
    set 
    {
        bar = value;
    }
}

I like:

public string Foo 
{
    get { return bar; }
    set { bar = value; }
}
flag

2 Answers

vote up 2 vote down check

You sure can, just go to Resharper > Options > Languages > C# > Formatting Style and tick "place simple property/indexer/event declaration on a single line"

link|flag
Thanks for the hint :) Although in 4.5 its ReSharper > Options -> Languages > C# > Formating Style > Line Breaks and Wrapping > Other > Place simple accessor on single line. – Carl Bergquist Oct 30 at 14:15
vote up 1 vote down

If you're using the code expansion template to produce a property, you can update the template in the ReSharper Settings at: ReSharper >> Live Templates >> Predefined Templates >> C# >> prop.

If you're referring to the code produced by refactoring commands, I don't believe it's configurable. However, you may be able to run Code Cleanup and have it reformat.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.