Line-up Arguments
In This Article
Moves Arguments to this method call up, so they all exist on the same line.
#Availability
Available from the context menu or via shortcuts:
- when the edit cursor, or caret is on a method’s name.
#Notes
- The refactoring is the functional opposite of Break Apart Arguments.
#Example
│TestMethod("First Name",
"FamilyName",
25);
│TestMethod("First Name", _
"FamilyName", _
25)
Result:
│TestMethod("First Name", "FamilyName", 25);
│TestMethod("First Name", "FamilyName", 25)