Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 804 Bytes

RR0052.md

File metadata and controls

53 lines (38 loc) · 804 Bytes

Wrap initializer expressions

Property Value
Id RR0052
Title Wrap initializer expressions
Syntax initializer
Enabled by Default

Usage

Before

var x = new string[] { "a", "b", "c" }

After

var x = new string[]
{
    "a",
    "b",
    "c"
}

Before

var x = new string[]
{
    "a",
    "b",
    "c"
}

After

var x = new string[] { "a", "b", "c" }

See Also

(Generated with DotMarkdown)