Concatenate two IEnumerable sequences in C# .NET
August 4, 2017 2 Comments
We can use the Range method to build two integer sequences as follows:
IEnumerable<int> firstRange = Enumerable.Range(10, 10); IEnumerable<int> secondRange = Enumerable.Range(5, 20);
You can join the two sequences using the Concat method:
List<int> concatenated = firstRange.Concat(secondRange).ToList(); concatenated.ForEach(i => Debug.WriteLine(i));
You’ll see that the concatenated sequence holds all numbers from the first and the second sequence: