csharp_wrap_before_declaration_rpar
Put a broken parameter list's ) on its own line.
| Value | Notes |
|---|---|
true |
|
false |
Default: (not set)
csharp_wrap_before_declaration_rpar = true
namespace N;
public class Widget
{
public void Register(string name, int value, bool active, string tag)
{
Console.WriteLine(name);
}
}
namespace N;
public class Widget
{
public void Register(string name, int value, bool active, string tag)
{
Console.WriteLine(name);
}
}
csharp_wrap_before_declaration_rpar = false
namespace N;
public class Widget
{
public void Register(string name, int value, bool active, string tag)
{
Console.WriteLine(name);
}
}
namespace N;
public class Widget
{
public void Register(string name, int value, bool active, string tag)
{
Console.WriteLine(name);
}
}