Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 698 Bytes

File metadata and controls

20 lines (14 loc) · 698 Bytes

AL1213: Use null-or-whitespace guard helper

Property Value
Severity Warning
Category Roslyn Utilities
Code fix No
Analyzer Al1213UseGuardNotNullOrWhiteSpaceAnalyzer
Enabled by default Yes

Description

Use Guard.NotNullOrWhiteSpace() instead of verbose if (string.IsNullOrWhiteSpace(...)) throw new ArgumentNullException/ArgumentException patterns.

See also