Loading

csharp_space_between_method_call_parameter_list_parentheses

Space just inside the parentheses of an argument list.

Value Notes
true
false

Default: false

csharp_space_between_method_call_parameter_list_parentheses = 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_parameter_list_parentheses = 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);
    }
}