Skip to content

Improve code fix for SA1003 in chained constructors #2613

@sharwell

Description

@sharwell

Input

public MyType() :
    base(3)
{
}

Expected result

After applying the SA1003 code fix, the code should be as follows:

public MyType()
    : base(3)
{
}

Actual result

After applying the SA1003 code fix, the code is as follows:

public MyType() : base(3)
{
}

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions