Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 362 Bytes

RCS1042.md

File metadata and controls

27 lines (19 loc) · 362 Bytes

RCS1042: Remove enum default underlying type

Property Value
Id RCS1042
Severity Hidden

Example

Code with Diagnostic

public enum Foo : int // RCS1042
{
}

Code with Fix

public enum Foo
{
}

(Generated with DotMarkdown)