Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 369 Bytes

RCS1106.md

File metadata and controls

30 lines (22 loc) · 369 Bytes

RCS1106: Remove empty destructor

Property Value
Id RCS1106
Severity Info

Example

Code with Diagnostic

public class Foo
{
    ~Foo() // RCS1106
    {
    }
}

Code with Fix

public class Foo
{
}

(Generated with DotMarkdown)