This option controls whether the collection expression syntax should be preferred when creating a collection.
List<int> list = [1, 2, 3];
var list = new List<int>(); list.Add(1); list.Add(2); list.Add(3);