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; }
}
Please sign in to leave a 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.