Property | Value |
---|---|
Id | RR0185 |
Title | Replace object creation with default value |
Syntax | object creation expression |
Enabled by Default | ✓ |
var x = new object();
object x = null;
var arr = new object[0];
object[] arr = null;
(Generated with DotMarkdown)