Piszę swój kod testowy i nie chcę pisać:
List<string> nameslist = new List<string>();
nameslist.Add("one");
nameslist.Add("two");
nameslist.Add("three");
Bardzo chciałbym napisać
List<string> nameslist = new List<string>({"one", "two", "three"});
Jednak {"one", "two", "three"} nie jest "IEnumerable string Collection". Jak mogę zainicjować to w jednym wierszu przy użyciu kolekcji ciągów IEnumerable ”?