Skip to content

Convert to block bodied method from expression bodied method #509

@giggio

Description

@giggio

This:

class C
{
    private int M() => 1;
}

Becomes:

class C
{
    private int M()
    {
        return 1;
    }
}

This is the opposite of CC0038.

Category: Refactoring
Id: CC0104
Severity: Hidden

@pedrobenevides is working on it.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions