gpt4 book ai didi

c# - 将列表内容附加到另一个列表 C#

转载 作者:IT王子 更新时间:2023-10-29 03:31:45 26 4
gpt4 key购买 nike

我有以下内容:

  1. 一个名为 GlobalStrings 的主列表
  2. 另一个名为 localStrings 的列表

例如在一个循环中:

List<string> GlobalStrings = new List<string>(); 
List<string> localStrings = new List<string>();
for(x=1;x<10;x++)
{
localStrings.Add("some value");
localStrings.Add("some value");
}
// Want to append localStrings to GlobalStrings as easily as possible

最佳答案

GlobalStrings.AddRange(localStrings);

注意:您不能使用接口(interface)(IList)声明列表对象。
文档: List<T>.AddRange(IEnumerable<T>) .

关于c# - 将列表内容附加到另一个列表 C#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1825568/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com