Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 655 Bytes

RCS1209.md

File metadata and controls

38 lines (28 loc) · 655 Bytes

RCS1209: Order type parameter constraints

Property Value
Id RCS1209
Category Readability
Severity Info

Example

Code with Diagnostic

public class Foo<T1, T2, T3>
    where T3 : class // RCS1209
    where T2 : class
    where T1 : class
{
}

Code with Fix

public class Foo<T1, T2, T3>
    where T1 : class
    where T2 : class
    where T3 : class
{
}

See Also

(Generated with DotMarkdown)