删除不必要的赋值 (IDE0059)

属性
规则 ID IDE0059
标题 删除不必要的赋值
类别 Style
Subcategory 不必要的代码规则(表达式级首选项)
适用的语言 C# 和 Visual Basic
选项 csharp_style_unused_value_assignment_preference
visual_basic_style_unused_value_assignment_preference

概述

此规则标记不必要的赋值。 例如:

// IDE0059: value written to 'v' is never
// read, so assignment to 'v' is unnecessary.
int v = Compute();
v = Compute2();

你可执行下列操作之一来解决此冲突:

  • 如果赋值项右侧的表达式无任何副作用,则删除表达式或整个赋值语句。 这样可避免不必要的计算,从而提高性能。

    int v = Compute2();
    
  • 如果赋值项右侧的表达式有副作用,请将赋值项左侧替换为从未使用过的弃元(仅限 C#)或局部变量。 弃元可通过显式展示要放弃未使用值的意向来提高代码清晰度。

    _ = Compute();
    int v = Compute2();
    

选项

此方面的选项指定是首选使用弃元还是未使用的局部变量:

若要了解如何配置选项,请参阅选项格式

csharp_style_unused_value_assignment_preference

Property 价值 说明
选项名称 csharp_style_unused_value_assignment_preference
适用的语言 C#
选项值 discard_variable 在分配未使用的值时,首选使用弃元
unused_local_variable 在分配未使用的值时,首选使用局部变量
默认选项值 discard_variable
// csharp_style_unused_value_assignment_preference = discard_variable
int GetCount(Dictionary<string, int> wordCount, string searchWord)
{
    _ = wordCount.TryGetValue(searchWord, out var count);
    return count;
}

// csharp_style_unused_value_assignment_preference = unused_local_variable
int GetCount(Dictionary<string, int> wordCount, string searchWord)
{
    var unused = wordCount.TryGetValue(searchWord, out var count);
    return count;
}

visual_basic_style_unused_value_assignment_preference

Property 价值 说明
选项名称 visual_basic_style_unused_value_assignment_preference
适用的语言 Visual Basic
选项值 unused_local_variable 在分配未使用的值时,首选使用局部变量
默认选项值 unused_local_variable
' visual_basic_style_unused_value_assignment_preference = unused_local_variable
Dim unused = Computation()

抑制警告

如果只想抑制单个冲突,请将预处理器指令添加到源文件以禁用该规则,然后重新启用该规则。

#pragma warning disable IDE0059
// The code that's violating the rule is on this line.
#pragma warning restore IDE0059

若要对文件、文件夹或项目禁用该规则,请在配置文件中将其严重性设置为 none

[*.{cs,vb}]
dotnet_diagnostic.IDE0059.severity = none

若要禁用所有代码样式规则,请在配置文件中将类别 Style 的严重性设置为 none

[*.{cs,vb}]
dotnet_analyzer_diagnostic.category-Style.severity = none

有关详细信息,请参阅如何禁止显示代码分析警告

属性
规则 ID IDE0059
标题 未使用该值
类别 样式
适用的语言 F#
选项

概述

此规则标记不必要的赋值。 例如,以下代码片段中未使用 answer

type T() =
    let answer = 42

另请参阅