CA1804: Remove unused locals
Item | Value |
---|---|
RuleId | CA1804 |
Category | Microsoft.Performance |
Breaking change | Non-breaking |
Cause
A method declares a local variable but does not use the variable except possibly as the recipient of an assignment statement. For analysis by this rule, the tested assembly must be built with debugging information and the associated program database (.pdb) file must be available.
Rule description
Unused local variables and unnecessary assignments increase the size of an assembly and decrease performance.
How to fix violations
To fix a violation of this rule, remove, or use the local variable.
Note
The C# compiler removes unused local variables when the optimize
option is enabled.
When to suppress warnings
Suppress a warning from this rule if the variable was compiler emitted. It is also safe to suppress a warning from this rule, or to disable the rule, if performance and code maintenance are not primary concerns.
Example
The following example shows several unused local variables.
using System;
using System.Windows.Forms;
namespace PerformanceLibrary
{
public class UnusedLocals
{
public void SomeMethod()
{
int unusedInteger;
string unusedString = "hello";
string[] unusedArray = Environment.GetLogicalDrives();
Button unusedButton = new Button();
}
}
}
Related rules
CA1809: Avoid excessive locals
CA1811: Avoid uncalled private code