首选“null”检查而不是类型检查 (IDE0150)

属性
规则 ID IDE0150
标题 首选 null 检查,而不是类型检查
类别 Style
Subcategory 语言规则(表达式级首选项)
适用的语言 C#
选项 csharp_style_prefer_null_check_over_type_check

概述

当可以改用 is not null 时,此样式规则会标记 is {type} 语句的使用。 同样,它标记 is not {type} 语句的使用以支持 is null。 使用 is nullis not null 提高代码的可读性。

选项

选项指定你希望规则强制实施的行为。 若要了解如何配置选项,请参阅选项格式

csharp_style_prefer_null_check_over_type_check

属性 说明
选项名称 csharp_style_prefer_null_check_over_type_check
选项值 true 首选 null 检查而不是类型检查。
false 禁用规则。
默认选项值 true

示例

// Violates IDE0150.
if (numbers is not IEnumerable<int>) ...

// Fixed code.
if (numbers is null) ...

抑制警告

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

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

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

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

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

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

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

另请参阅