如何在C#中串联列表?


170

如果我有:

List<string> myList1;
List<string> myList2;

myList1 = getMeAList();
// Checked myList1, it contains 4 strings

myList2 = getMeAnotherList();
// Checked myList2, it contains 6 strings

myList1.Concat(myList2);
// Checked mylist1, it contains 4 strings... why?

我在Visual Studio 2008中运行了与此类似的代码,并在每次执行后设置了断点。之后myList1 = getMeAList();myList1包含四个字符串,然后我按下加号按钮以确保它们并非全部为空。

之后 myList2 = getMeAnotherList();myList2包含六个字符串,然后检查以确保它们不为空... myList1.Concat(myList2);myList1 之后仅包含四个字符串。这是为什么?

Answers:



96

试试这个:

myList1 = myList1.Concat(myList2).ToList();

Concat返回一个IEnumerable <T>,它是两个列表的总和,它不会修改任何一个现有列表。另外,由于它返回IEnumerable,因此,如果要将其分配给List <T>变量,则必须在返回的IEnumerable <T>上调用ToList()。


6
现在,我重新阅读了这个问题,.AddRange()听起来确实像是OP真正想要的。
乔纳森·鲁普

@Kartiikeya,如果说参数无效,则没有System.Linq的using语句,或者其中之一不是IEnumerable<T>
Jonathan Rupp 2015年

12
targetList = list1.Concat(list2).ToList();

我认为效果很好。如前所述,Concat返回一个新序列,并将结果转换为List时,它可以完美地完成工作。


4

还值得注意的是,Concat在恒定的时间和恒定的内存中工作。例如下面的代码

        long boundary = 60000000;
        for (long i = 0; i < boundary; i++)
        {
            list1.Add(i);
            list2.Add(i);
        }
        var listConcat = list1.Concat(list2);
        var list = listConcat.ToList();
        list1.AddRange(list2);

提供以下时序/内存指标:

After lists filled mem used: 1048730 KB
concat two enumerables: 00:00:00.0023309 mem used: 1048730 KB
convert concat to list: 00:00:03.7430633 mem used: 2097307 KB
list1.AddRange(list2) : 00:00:00.8439870 mem used: 2621595 KB

2

我知道这很老了,但我很快想到了这篇文章,以为Concat是我的答案。联盟对我来说很棒。注意,它只返回唯一值,但知道无论如何此解决方案对我来说,我都在获得唯一值。

namespace TestProject
{
    public partial class Form1 :Form
    {
        public Form1()
        {
            InitializeComponent();

            List<string> FirstList = new List<string>();
            FirstList.Add("1234");
            FirstList.Add("4567");

            // In my code, I know I would not have this here but I put it in as a demonstration that it will not be in the secondList twice
            FirstList.Add("Three");  

            List<string> secondList = GetList(FirstList);            
            foreach (string item in secondList)
                Console.WriteLine(item);
        }

        private List<String> GetList(List<string> SortBy)
        {
            List<string> list = new List<string>();
            list.Add("One");
            list.Add("Two");
            list.Add("Three");

            list = list.Union(SortBy).ToList();

            return list;
        }
    }
}

输出为:

One
Two
Three
1234
4567

2

看一下我的实现。空列表是安全的。

 IList<string> all= new List<string>();

 if (letterForm.SecretaryPhone!=null)// first list may be null
     all=all.Concat(letterForm.SecretaryPhone).ToList();

 if (letterForm.EmployeePhone != null)// second list may be null
     all= all.Concat(letterForm.EmployeePhone).ToList(); 

 if (letterForm.DepartmentManagerName != null) // this is not list (its just string variable) so wrap it inside list then concat it 
     all = all.Concat(new []{letterForm.DepartmentManagerPhone}).ToList();
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.