Generated Properties Format

Generated properties seem to come at as the following

public int MyProperty

{

get => return _myProperty;

set => _myProperty = value;

}

 

I would like to change it back to the more traditional.

public int MyProperty

{

get { return _myProperty; }

set { _myProperty = value; }

}

0
1 comment
Official comment

Hello David!

 

Thank you for contacting us.

Please try changing ReSharper | Options | Code Editing | C# | Code Style | Code Body| Properties, indexers and events to 'Block body'

Thank you.

Please sign in to leave a comment.