Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 475 Bytes

RCS1108.md

File metadata and controls

35 lines (25 loc) · 475 Bytes

RCS1108: Add 'static' modifier to all partial class declarations

Property Value
Id RCS1108
Severity Info

Example

Code with Diagnostic

public static partial class Foo
{
}

public partial class Foo // RCS1108
{
}

Code with Fix

public static partial class Foo
{
}

public static partial class Foo
{
}

(Generated with DotMarkdown)