Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 545 Bytes

RCS0048.md

File metadata and controls

30 lines (20 loc) · 545 Bytes

RCS0048: Put initializer on a single line

Property Value
Id RCS0048
Severity None

Example

Code with Diagnostic

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

Code with Fix

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

Applies to

(Generated with DotMarkdown)