GU0012
November 24, 2021 ยท View on GitHub
Check if parameter is null
| Topic | Value |
|---|---|
| Id | GU0012 |
| Severity | Hidden |
| Enabled | True |
| Category | Gu.Analyzers.Correctness |
| Code | ParameterAnalyzer |
| SimpleAssignmentAnalyzer |
Description
Check if parameter is null.
Motivation
ADD MOTIVATION HERE
How to fix violations
ADD HOW TO FIX VIOLATIONS HERE
Configure severity
Via ruleset file.
Configure the severity per project, for more info see MSDN.
Via #pragma directive.
#pragma warning disable GU0012 // Check if parameter is null
Code violating the rule here
#pragma warning restore GU0012 // Check if parameter is null
Or put this at the top of the file to disable all instances.
#pragma warning disable GU0012 // Check if parameter is null
Via attribute [SuppressMessage].
[System.Diagnostics.CodeAnalysis.SuppressMessage("Gu.Analyzers.Correctness",
"GU0012:Check if parameter is null",
Justification = "Reason...")]