How can I configurate the space after 'set'?
Hi, I'm using ReSharper8.0 and C#. After auto cleanup, I got: public string PropertyName{ get { return propertyName; } set{ if (Equals(propertyName, value)) return; propertyName = value; } }
But I would like to add a space after 'set' keyword, like below:
public string PropertyName{
get { return propertyName; }
set {
if (Equals(propertyName, value))
return;
propertyName = value;
}
}Where can I find configuration of spacing after 'set'?
Please sign in to leave a comment.