Open jackmoskowitz opened 6 years ago
I have a property:
private Box _box = null; public Box box { get { return (_box); } set { if (value != _box) { _box = value; OnPropertyChanged("box"); } } }
After cleaning, an unwanted blank line is inserted:
private Box _box = null;
public Box box { get { return (_box); } set { if (value != _box) { _box = value; OnPropertyChanged("box"); } } }
How do I prevent that?
By default we insert a blank line before multi-line properties. To disable that:
CodeMaid->Options->Cleaning->Insert->Insert blank line padding before->multi-line properties
I have a property:
private Box _box = null; public Box box { get { return (_box); } set { if (value != _box) { _box = value; OnPropertyChanged("box"); } } }
After cleaning, an unwanted blank line is inserted:
private Box _box = null;
public Box box { get { return (_box); } set { if (value != _box) { _box = value; OnPropertyChanged("box"); } } }
How do I prevent that?