Loading

csharp_space_between_method_call_empty_parameter_list_parentheses

Space inside an empty argument list ().

Value Notes
true
false

Default: false

csharp_space_between_method_call_empty_parameter_list_parentheses = true
		
namespace N;

public class Widget
{
    public void Run()
    {
        var s = ToString();
        var h = GetHashCode();
    }
}
		
namespace N;

public class Widget
{
    public void Run()
    {
        var s = ToString( );
        var h = GetHashCode( );
    }
}
		
csharp_space_between_method_call_empty_parameter_list_parentheses = false
		
namespace N;

public class Widget
{
    public void Run()
    {
        var s = ToString( );
        var h = GetHashCode( );
    }
}
		
namespace N;

public class Widget
{
    public void Run()
    {
        var s = ToString();
        var h = GetHashCode();
    }
}