csharp_blank_lines_inside_type
Blank lines below the opening brace and above the closing brace of a type.
| Value | Notes |
|---|---|
<integer> |
Any integer. |
Default: 0
csharp_blank_lines_inside_type = 1
namespace N;
public class Widget
{
public int X { get; set; }
public void Run() { }
}
namespace N;
public class Widget
{
public int X { get; set; }
public void Run() { }
}