Skip to main content
Version: Next

MP0008

Declares mutable instance state that can leak between module executions.

PropertyValue
CategoryDesign
Default severityWarning
AvailabilityPublic analyzer package

Configure severity

.editorconfig
dotnet_diagnostic.MP0008.severity = warning

Use none to disable the rule, or silent, suggestion, warning, or error to change its severity.

Suppress a specific occurrence

#pragma warning disable MP0008
// Code that intentionally violates MP0008.
#pragma warning restore MP0008