使用 Null 传播 (IDE0031)

属性
规则 ID IDE0031
标题 使用 Null 传播
类别 Style
Subcategory 语言规则(表达式级首选项)
适用的语言 C# 和 Visual Basic
选项 dotnet_style_null_propagation

概述

此样式规则涉及使用 NULL 条件运算符,而不是带有 NULL 检查的三元条件表达式

选项

设置关联的选项的值,以指定是使用 null 条件运算符,还是使用带 null 检查的三元条件表达式。

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

dotnet_style_null_propagation

属性 说明
选项名称 dotnet_style_null_propagation
选项值 true 如可能,更倾向使用 null 条件运算符
false 如可能,更倾向使用三元 null 检查
默认选项值 true
// dotnet_style_null_propagation = true
var v = o?.ToString();

// dotnet_style_null_propagation = false
var v = o == null ? null : o.ToString(); // or
var v = o != null ? o.ToString() : null;
' dotnet_style_null_propagation = true
Dim v = o?.ToString()

' dotnet_style_null_propagation = false
Dim v = If(o Is Nothing, Nothing, o.ToString()) ' or
Dim v = If(o IsNot Nothing, o.ToString(), Nothing)

抑制警告

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

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

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

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

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

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

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

另请参阅