If I have property Keywords which is defined as list of strings
public List<string> Keywords;
I tried with following inline command to assign new list of string
Keywords = new List<string>().Add(new List<string>() { "lorem", "ipsum", "root page"})
I know that I can use
List<string> words = new List<string>() { "lorem", "ipsum", "root page"};
Keywords = new List<string>().AddRange(words);
but question is how can this be done using inline statement