使用内联语句定义和分配字符串列表
本文关键字:分配 字符串 列表 定义 语句 | 更新日期: 2023-09-27 18:31:31
如果我有定义为字符串列表的属性关键字
public List<string> Keywords;
我尝试使用以下内联命令来分配新的字符串列表
Keywords = new List<string>().Add(new List<string>() { "lorem", "ipsum", "root page"})
我知道我可以使用
List<string> words = new List<string>() { "lorem", "ipsum", "root page"};
Keywords = new List<string>().AddRange(words);
但问题是如何使用内联语句完成此操作
public List<string> Keywords = new List<string>(){"lorem", "ipsum", "root page"};
不需要Add()
List 的方法。
List<string> Keywords = new List<string>(){"lorem", "ipsum", "root page"};