Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 514 Bytes

RCS1106.md

File metadata and controls

35 lines (25 loc) · 514 Bytes

RCS1106: Remove empty destructor

Property Value
Id RCS1106
Category Redundancy
Severity Info

Example

Code with Diagnostic

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

Code with Fix

public class Foo
{
}

See Also

(Generated with DotMarkdown)