如果我有属性关键字,它被定义为字符串列表
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);
但问题是如何使用内联语句
来完成答案 0 :(得分:3)
public List<string> Keywords = new List<string>(){"lorem", "ipsum", "root page"};
答案 1 :(得分:0)
不需要列表的Add()
方法。
List<string> Keywords = new List<string>(){"lorem", "ipsum", "root page"};