You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var options = new[] {
new Option("-s", "an option"),
new Option("--very-long", "an option")
};
var something = new SomeObject
{
Value = "kljasdlfkjaslkdfasdf",
Value2 = "lkasdlfkjaslkjdfaslkdjf"
};
The array initializer should be
var options = new[]
{
new Option("-s", "an option"),
new Option("--very-long", "an option")
};
The text was updated successfully, but these errors were encountered:
belav
changed the title
Array Initializer does not format braces consistently with other statements.
Implicit Array Initializer does not format braces consistently with other statements.
Jun 14, 2021
The array initializer should be
The text was updated successfully, but these errors were encountered: