I wish to transform code like:

var p = new Person("Ian", "Smith", 40, 16)

To:

var p = new Person(surname: "Ian", givenName:"Smith", weight:40, age:16)

As a first step in making the code more readable, I am willing to use a 3rd party refactoring tool if need be.

(Please do not tell me to use parameter objects and factor methods etc, these may come later once I can at least read the code!)

link|improve this question

Just to clarify: You are looking for a tool that automatically changes your method calls to use named parameters? – Daniel Hilgarth Apr 5 '11 at 10:15
@Daniel, yes that correct – Ian Ringrose Apr 5 '11 at 10:34
@Ian: automatically for all method calls inside your project? Or is it ok, to manually choose which method calls should be changed? – Daniel Hilgarth Apr 5 '11 at 10:43
1  
@Ian: Is it an option to code something yourself? confluence.jetbrains.net/display/ReSharper/… and hadihariri.com/2010/01/12/… – Daniel Hilgarth Apr 5 '11 at 10:58
1  
@Ian: IMHO, coding it yourself doesn't take much longer with the Resharper OpenAPI but it is so much more fun than changing it by hand! :-) – Daniel Hilgarth Apr 5 '11 at 11:02
show 4 more comments
feedback

1 Answer

up vote 1 down vote accepted

Refactor v2001 vol 1.3 claims to be able to do it.

ReSharper has it in it's issues database, but have not commited doing it yet.

link|improve this answer
I think it might have been v2011 vol 1.4 (devexpress.com/Support/WhatsNew/DXperience/files/11.1.4.xml) – David Gardiner May 21 at 2:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.