Property | Value |
---|---|
Id | RR0187 |
Title | Wrap constraint clauses |
Syntax | type parameter constraint clause |
Enabled by Default | ✓ |
private void Foo<T1, T2, T3>() where T1 : class where T2 : class where T3 : class
{
}
private void Foo<T1, T2, T3>()
where T1 : class
where T2 : class
where T3 : class
{
}
(Generated with DotMarkdown)