This option controls whether collection initializers should be preferred over calling Add individually to populate a new collection.
List<int> list = [1, 2, 3];
var list = new List<int>(); list.Add(1); list.Add(2); list.Add(3);