use Concat with array elements : Concat « LINQ « C# / C Sharp






use Concat with array elements

 
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Linq;

public class MainClass{
   public static void Main(){
       int[] numbers = { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
       int[] moreNumbers = { 10, 11, 12, 13 };

       var query = numbers.Concat(moreNumbers);
   }
}

 








Related examples in the same category

1.Use Concat to merge two integer arrays into a single sequence
2.Uses Concat to merge the names of all customers and products
3.Concat Prototype
4.Concatention by Using the Concat Operator
5.Concat appends one sequence to another