C#为什么我不能向字符串列表中添加更多项目?我可以加一个单数


private List<string> _listOfWords = new List<string>();
_listOfWords.Add("tell", "hey"); 
//Why does not this work? I can add one item but not multiple

List<T>.Add(T)只接受一个参数。

因此,可以像一样多次调用该方法来添加多个项目

list.Add("item1");
list.Add("item2");

或者您可以使用另一种方法,如List<T>.AddRange(IEnumerable<T>),在一个调用中添加多个项目

list.AddRange(new string[] { "item1", "item", ... });

您可能在寻找AddRange吗?

_listOfWords.AddRange(new[] { "tell", "hey" });

相关内容

  • 没有找到相关文章

最新更新