-
-
Notifications
You must be signed in to change notification settings - Fork 268
Open
Description
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?