ฉันกำลังเขียนรหัสทดสอบของฉันและฉันไม่ต้องการเขียน:
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 "ได้อย่างไร