Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 649 Bytes

RCS1036.md

File metadata and controls

49 lines (32 loc) · 649 Bytes

RCS1036: Remove redundant empty line

Property Value
Id RCS1036
Category Redundancy
Severity Info

Example

Code with Diagnostic

public class Foo
{

    private string _f;


    public bool Bar()
    {

        return false;

    }

}

Code with Fix

public class Foo
{
    private string _f;

    public bool Bar()
    {
        return false;
    }
}

See Also

(Generated with DotMarkdown)