Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 630 Bytes

RR0191.md

File metadata and controls

29 lines (19 loc) · 630 Bytes

Use index initializer

Property Value
Id RR0191
Title Use index initializer
Syntax collection initializer
Enabled by Default

Usage

Before

var dic = new Dictionary<int, string>() { { 0, "0" } };

After

var dic = new Dictionary<int, string>() { [0] = "0" };

See Also

(Generated with DotMarkdown)