vscode-csharp icon indicating copy to clipboard operation
vscode-csharp copied to clipboard

Formatting of base in constructor

Open HypeillingerChillinger opened this issue 2 years ago • 0 comments

Describe the solution you would like

public class WhereFuncPathTests : UnitTestBase
{
    public WhereFuncPathTests(DatabaseFixture fixture)
: base(fixture)        
{ }
}

Should be converted/formatted (CTRL+SHIFT+I) to:

public class WhereFuncPathTests : UnitTestBase
{
    public WhereFuncPathTests(DatabaseFixture fixture)
        : base(fixture)        
    { }
}

HypeillingerChillinger avatar Jun 20 '22 09:06 HypeillingerChillinger