JetBrains Rider 2018.2 Help

Code Inspection: Local function never used

JetBrains Rider suggests removing unused local functions to clear up the code. You can remove such a function with a quick-fix or write the code that uses it.

Suboptimal code

After the quick-fix

public int MyMethod() { int Sum(int x, int y) { return x + y; } return 42; }

public int MyMethod() { return 42; }

Last modified: 21 December 2018

See Also