Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 621 Bytes

RCS1102.md

File metadata and controls

42 lines (30 loc) · 621 Bytes

RCS1102: Make class static

Property Value
Id RCS1102
Category Design
Severity Warning

Example

Code with Diagnostic

public class Foo // RCS1102
{
    private static string _f;

    public static void Bar()
    {
    }
}

Code with Fix

public static class Foo
{
    private static string _f;

    public static void Bar()
    {
    }
}

See Also

(Generated with DotMarkdown)