Loading

csharp_space_between_method_declaration_name_and_open_parenthesis

Space between the method name and its opening parenthesis.

Value Notes
true
false

Default: false

csharp_space_between_method_declaration_name_and_open_parenthesis = true
		
namespace N;

public class Widget
{
    public void Register(string name, int value)
    {
        Console.WriteLine(name);
    }
}
		
namespace N;

public class Widget
{
    public void Register (string name, int value)
    {
        Console.WriteLine(name);
    }
}
		
csharp_space_between_method_declaration_name_and_open_parenthesis = false
		
namespace N;

public class Widget
{
    public void Register (string name, int value)
    {
        Console.WriteLine (name);
    }
}
		
namespace N;

public class Widget
{
    public void Register(string name, int value)
    {
        Console.WriteLine(name);
    }
}