roslynator
roslynator copied to clipboard
Implicitly constructed arguments
var thing1 = new MyType ("foo", new ArgThing("bar"));
can be refactored to with RCS1250
MyType thing1 = new("foo", new ArgThing("bar"));
But I want to take mine further to:
MyType thing1 = new("foo", new("bar"));
MyType thing2 = FactoryMethod("foo", new("bar"));
Can these be added to roslynator for arguments?