Loading

csharp_wrap_before_invocation_rpar

Put a broken argument list's ) on its own line.

Value Notes
true
false

Default: (not set)

csharp_wrap_before_invocation_rpar = true
		
namespace N;

public class Widget
{
    public void Register(string name, int value, bool active, string tag)
    {
    }

    public void Run()
    {
        Register("curb", 42, true, "formatter");
    }
}
		
namespace N;

public class Widget
{
    public void Register(string name, int value, bool active, string tag)
    {
    }

    public void Run()
    {
        Register("curb", 42, true, "formatter");
    }
}
		
csharp_wrap_before_invocation_rpar = false
		
namespace N;

public class Widget
{
    public void Register(string name, int value, bool active, string tag)
    {
    }

    public void Run()
    {
        Register("curb", 42, true, "formatter");
    }
}
		
namespace N;

public class Widget
{
    public void Register(string name, int value, bool active, string tag)
    {
    }

    public void Run()
    {
        Register("curb", 42, true, "formatter");
    }
}