Use pattern matching (IDE0078)

Property Value
Rule ID IDE0078
Title Use pattern matching
Category Style
Subcategory Language rules (pattern matching preferences)
Applicable languages C# 9.0+
Options csharp_style_prefer_pattern_matching

Overview

This style rule concerns the use of C# 9.0 pattern matching constructs.

Options

Options specify the behavior that you want the rule to enforce. For information about configuring options, see Option format.

csharp_style_prefer_pattern_matching

Property Value Description
Option name csharp_style_prefer_pattern_matching
Option values true Prefer to use pattern matching constructs, when possible
false Prefer not to use pattern matching constructs.
Default option value true
// csharp_style_prefer_pattern_matching = true
var x = i is default(int) or > (default(int));
var y = o is not C c;

// csharp_style_prefer_pattern_matching = false
var x = i == default || i > default(int);
var y = !(o is C c);

Suppress a warning

If you want to suppress only a single violation, add preprocessor directives to your source file to disable and then re-enable the rule.

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

To disable the rule for a file, folder, or project, set its severity to none in the configuration file.

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

To disable all of the code-style rules, set the severity for the category Style to none in the configuration file.

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

For more information, see How to suppress code analysis warnings.

See also