Loading

csharp_space_between_method_declaration_empty_parameter_list_parentheses

Space inside an empty parameter list ().

Value Notes
true
false

Default: false

csharp_space_between_method_declaration_empty_parameter_list_parentheses = true
		
namespace N;

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

public class Widget
{
    public void Reset( )
    {
        Console.WriteLine("reset");
    }
}
		
csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
		
namespace N;

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

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