Here is my problem. I want to put line breaks between properties, not fields.
Here is what I get:
private string _field1; private string _field2; private string _field3; public string Property1 { get; set; } public string Property2 { get; set; } public string Property3 { get; set; }
Here is what I want:
private string _field1; private string _field2; private string _field3; public string Property1 { get; set; } public string Property2 { get; set; } public string Property3 { get; set; }
Does anyone have an idea how to get Resharper to have this type of line breaks? Currently, I have that Resharper puts line breaks between all fields and properties, with or without line breaks. It seems I canโt find the right settings to get what I want.
chafnan
source share