Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 595 Bytes

RCS1019.md

File metadata and controls

36 lines (24 loc) · 595 Bytes

RCS1019: Order modifiers

Property Value
Id RCS1019
Category Readability
Severity None

Example

Code with Diagnostic

private readonly static object _f; // RCS1019

internal protected class Foo // RCS1019
{
}

Code with Fix

private static readonly object _f;

protected internal class Foo
{
}

See Also

(Generated with DotMarkdown)