Foo a = new Foo { A = { 2 } }; foreach (var x in a.A) Console.WriteLine($"{x}"); class Foo { public List<int> A { get; set; } = new List<int> { 1 }; }