Code inspection: Append to collection expression
If a collection expression is immediately followed by Add() calls on the collection, ReSharper suggests improving the structure and readability of the code by integrating the added items into the collection expression:
List<string> numbers =
["one", "two"];
numbers.Add("three");
numbers.Add("four");
List<string> numbers =
[
"one",
"two",
"three",
"four"
];
08 April 2024