Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 536 Bytes

RCS1234.md

File metadata and controls

38 lines (28 loc) · 536 Bytes

RCS1234: Duplicate enum value

Property Value
Id RCS1234
Category Readability
Severity Info

Example

Code with Diagnostic

enum E
{
    A = 1,
    B = 2,
    C = 2, RCS1234
}

Code with Fix

enum E
{
    A = 1,
    B = 2,
    C = B,
}

See Also

(Generated with DotMarkdown)