csharp_blank_lines_around_property
Blank lines before and after each property, indexer or event.
| Value | Notes |
|---|---|
<integer> |
Any integer. |
Default: 0
csharp_blank_lines_around_property = 1
namespace N;
public class Widget
{
public int X { get; set; }
public int Y { get; set; }
public int Z { get; set; }
}
namespace N;
public class Widget
{
public int X { get; set; }
public int Y { get; set; }
public int Z { get; set; }
}