Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 518 Bytes

RCS1157.md

File metadata and controls

31 lines (23 loc) · 518 Bytes

RCS1157: Composite enum value contains undefined flag

Property Value
Id RCS1157
Category Design
Severity Info

Example

Code with Diagnostic

[Flags]
public enum Foo
{
    None = 0,
    A = 1,
    B = 2,
    C = 4,
    D = 8,
    X = 17 // RCS1157
}

See Also

(Generated with DotMarkdown)