Is there a way to prefer/enforce style when using object initializer to not use parenthesis using editorconfig?
// prefer
new Foo
{
};
// instead of
new Foo()
{
};
Is there a way to prefer/enforce style when using object initializer to not use parenthesis using editorconfig?
// prefer
new Foo
{
};
// instead of
new Foo()
{
};