Rider Help

Change Signature refactoring

Ctrl+R, S

This refactoring combines several different modifications that can be made to signatures of methods, constructors, properties, and indexers. Along with changing signature in the declaration, Rider finds and updates all usages, base symbols, implementations, and overrides of the modified symbol in the current solution.

Applicable modifications

Using this refactoring, you can perform the following modifications:

Modification / SymbolMethodPropertyConstructorIndexer
Change name Modification is applicable Modification is applicable Modification is applicable
Change return type Modification is applicable Modification is applicable
Change names and types of parameters Modification is applicable Modification is applicable Modification is applicable
Add or remove parameters Modification is applicable Modification is applicable Modification is applicable
Reorder parameters Modification is applicable Modification is applicable Modification is applicable

Invoking the refactoring with a command

To change signature of a function

  1. Place the caret at the declaration or a usage of a method, property, constructor, or indexer in the editor, or select it in the Structure window.
  2. Do one of the following:
    • Press Ctrl+R, S.
    • Press Ctrl+Shift+R and then choose Change Signature
    • Choose Refactor | Change Signature in the main menu.
    The Change Signature dialog will open.
  3. Type a new name of the symbol in the Name field. If necessary, change the return type of the method in the Return type field.
  4. In the Parameters area, edit types, names, modifiers and default values of the existing parameters. If necessary, use the Add and Remove buttons to create or remove parameters. Click Move Up and Move Down to reorder parameters.
  5. If you do not want to change the usages of the function, Rider can leave the existing declaration and call it inside the new declaration, thus allowing you to leave the existing usages unchanged. To do so, choose Delegate via overloading method (see below for details).
  6. Check the new signature in the preview field.
  7. To apply the refactoring, click Next.
  8. If you added parameters, Rider suggests several ways to fix calls of the function: you can choose to leave the code of the calls non-compilable, use 'null' or specific value for all calls, or use a call diagram to pick values for each specific call individually (see below for details).
  9. If no conflicts are found, Rider performs the refactoring immediately. Otherwise, it prompts you to resolve conflicts.
Rider Change Signature wizard

Changing signature without updating the calls

If you choose Delegate via overloading method in the refactoring wizard, Rider leaves the existing declaration and calls it inside the new declaration, thus allowing you to leave the existing usages unchanged.

Note that this option is not available if you modify a function form an inheritance hierarchy.

For example, if you changed the name and reordered parameters of a method public string Foo(string s, int x), Rider will create the following code for you:

Before refactoringUpdating callsWithout updating calls
public string Foo(string s, int x) { return String.Format("'{0}': {1} times", s, x); } public void Test() { Foo("test", 10); }
public string Bar(int x, string s) { return String.Format("'{0}': {1} times", s, x); } public void Test() { Bar(10, "test"); }
public string Foo(string s, int x) { return Bar(x, s); } public string Bar(int x, string s) { return String.Format("'{0}': {1} times", s, x); } public void Test() { Foo("test", 10); }

Performing the refactoring in-place

You can change function's signature by modifying its declaration right in the editor and then applying a quick-fix to invoke the solution-wide refactoring.

For instance, if you reorder parameters in a method, a grey border appears around the method signature, notifying you that the refactoring is available. You can press Alt+Enter to find the refactoring in the action list:

Applying the Change Signature refactoring inline

After applying the quick-fix, a dialog shows your changes to the method signature:

Applying the Change Signature refactoring inline

You can click Next to apply the change solution-wide.

You can also apply the Change Signature refactoring when you add one new argument in any of the function's calls. In this case, Rider detects the incorrect call, highlights it and suggests the corresponding quick-fix:

Applying the Change Signature refactoring inline from a method usage
This quick-fix will invoke the refactoring and update the declaration of the function and all its usages solution-wide. If necessary, Rider will display a call diagram to pick values for each specific call individually

Updating calls with a call diagram (Push/Pull Parameter tool)

If you are changing a function signature so that a new parameter is added, Rider provides several ways of updating function calls. Besides using 'null' or a constant value for all calls, you can update each individual call using visual representation of calls.

If you perform the refactoring with the wizard, select Resolve with call tree on the last page of the wizard and click Next. If you perform refactoring from a quick-fix on an updated function call, the tool window with all calls of the modified function opens automatically:

Change signature - updating calls with call diagram

In this view, you can check the affected calls and locate them in the editor with a click. For each call, select the desired way of acquiring values for the newly added parameter, or select User edit to edit the call manually.

Last modified: 11 October 2017

See Also