Loading

csharp_blank_lines_around_invocable

Blank lines before and after each method or constructor. 0 means leave the author's.

Value Notes
<integer> Any integer.

Default: 0

csharp_blank_lines_around_invocable = 1
		
namespace N;

public class Widget
{
    public void Run()
    {
        Console.WriteLine("run");
    }
    public void Stop()
    {
        Console.WriteLine("stop");
    }
    public void Reset()
    {
        Console.WriteLine("reset");
    }
}
		
namespace N;

public class Widget
{
    public void Run()
    {
        Console.WriteLine("run");
    }

    public void Stop()
    {
        Console.WriteLine("stop");
    }

    public void Reset()
    {
        Console.WriteLine("reset");
    }
}