Wrap constraint clauses
Property | Value |
---|---|
Id | RR0187 |
Applicable Syntax | type parameter constraint clause |
Enabled by Default | ✓ |
Usage
Example #1
before.cs
private void Foo<T1, T2, T3>() where T1 : class where T2 : class where T3 : class
{
}
after.cs
private void Foo<T1, T2, T3>()
where T1 : class
where T2 : class
where T3 : class
{
}
Configuration
roslynator_refactoring.wrap_constraint_clauses.enabled = true|false