vscode-csharp
vscode-csharp copied to clipboard
Formatting of base in constructor
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)
{ }
}