Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 518 Bytes

RCS1041.md

File metadata and controls

28 lines (18 loc) · 518 Bytes

RCS1041: Remove empty initializer

Property Value
Id RCS1041
Category Redundancy
Severity Info

Example

Code with Diagnostic

var items = new List<object>() { }; // RCS1041

Code with Fix

var items = new List<object>();

See Also

(Generated with DotMarkdown)