내 테스트 코드를 작성 중이며 작성하고 싶지 않습니다.
List<string> nameslist = new List<string>();
nameslist.Add("one");
nameslist.Add("two");
nameslist.Add("three");
나는 쓰고 싶다
List<string> nameslist = new List<string>({"one", "two", "three"});
그러나 { "one", "two", "three"}는 "IEnumerable string Collection"이 아닙니다. IEnumerable string Collection "을 사용하여 한 줄로 어떻게 초기화 할 수 있습니까?