csharp_blank_lines_around_field
Blank lines before and after each field.
| Value | Notes |
|---|---|
<integer> |
Any integer. |
Default: 0
csharp_blank_lines_around_field = 1
namespace N;
public class Widget
{
private int _x;
private int _y;
private int _z;
}
namespace N;
public class Widget
{
private int _x;
private int _y;
private int _z;
}