Estou escrevendo meu código de teste e não quero escrever:
List<string> nameslist = new List<string>();
nameslist.Add("one");
nameslist.Add("two");
nameslist.Add("three");
Eu adoraria escrever
List<string> nameslist = new List<string>({"one", "two", "three"});
No entanto {"one", "two", "three"} não é uma "Coleção de strings de IEnumerable". Como posso inicializar isso em uma linha usando a coleção de strings IEnumerable "?