Loading

csharp_space_between_method_call_name_and_opening_parenthesis

Space between the method name and its opening parenthesis at a call site.

Value Notes
true
false

Default: false

csharp_space_between_method_call_name_and_opening_parenthesis = true
		
namespace N;

public class Widget
{
    public void Run()
    {
        Console.WriteLine("hello");
        Math.Max(1, 2);
    }
}
		
namespace N;

public class Widget
{
    public void Run()
    {
        Console.WriteLine ("hello");
        Math.Max (1, 2);
    }
}
		
csharp_space_between_method_call_name_and_opening_parenthesis = false
		
namespace N;

public class Widget
{
    public void Run()
    {
        Console.WriteLine ("hello");
        Math.Max (1, 2);
    }
}
		
namespace N;

public class Widget
{
    public void Run()
    {
        Console.WriteLine("hello");
        Math.Max(1, 2);
    }
}