JetBrains Rider 2020.3 Help

Inline Parameter refactoring

Ctrl+Alt+N

This refactoring allows you to replace a method parameter with argument value from a method call. If there are several calls, you can choose the call to take the argument from.

A simple case. Inlining a constant value of the parameter pi:

private double AreaOfCircle(double rad, double pi) { return pi*rad*rad; } public void Test() { var area = AreaOfCircle(10, Math.PI); }
private double AreaOfCircle(double rad) { return Math.PI*rad*rad; } public void Test() { var area = AreaOfCircle(10); }

If the argument that you want to be inlined depends on other variables and/or calculations, JetBrains Rider can replace the original parameter with other parameter(s) and move the calculations inside the target method.

In the following example, we apply the refactoring to the action parameter of the PerformAction method so that the whole lambda, which was used as an argument in the call moves into the method body, and two new parameters are created to pass necessary values:

private void PerformAction(Action action) { action(); } private void Test(string key, string value) { PerformAction(() => Console.WriteLine("{0} : {1}", key, value)); }
private void PerformAction(string arg0, string value) { ((Action) (() => Console.WriteLine("{0} : {1}", arg0, value)))(); } private void Test(string key, string value) { PerformAction(key, value); }

Inline a parameter

  1. Place the caret at the parameter in the method declaration or at the argument in the method call.

  2. Do one of the following:

    • Press Ctrl+Alt+N and then choose Inline Parameter

    • Press Ctrl+Alt+Shift+T and then choose Inline Parameter

    • Choose Refactor | Inline Parameter in the main menu.

    The Inline Parameter dialog will open.

  3. If the method has multiple usages, select the usage whose argument you want to be inlined and click Next.

  4. Select the parameter that you want to inline.

  5. If the inlined argument depends on other variables, JetBrains Rider suggests one or more variables from the caller in the New arguments field. Select the desired arguments.

  6. Check the preview of the new signature and click Next.

  7. If no conflicts are found, JetBrains Rider performs the refactoring immediately. Otherwise, it prompts you to resolve conflicts.

Last modified: 08 March 2021