我正在编写我的 testcode,我不想写:
List<string> nameslist = new List<string>();
nameslist.Add("one");
nameslist.Add("two");
nameslist.Add("three");
我很想写作
List<string> nameslist = new List<string>({"one", "two", "three"});
但是{“一”、“二”、“三”}不是“ IEnumable 字符串集合”。如何使用 IEnumable 字符串集合在一行中初始化它?