How to concatenate Two Arrays in C#?


To concatenate two arrays in C#, let us first declare and initialize the array. Here, we have considered a string array −

string[] str = new string[] { "Hello","World" };

Now let us use the join() method to concatenate −.

string.Join(" ", str);

Now let us see the complete code to concatenate two arrays.

Example

 Live Demo

using System;

class Program {
   static void Main() {
      string[] str = new string[] { "Hello","World" };

      string res = string.Join(" ", str);
      Console.WriteLine(res);
   }
}

Output

Hello World

Samual Sam
Samual Sam

Learning faster. Every day.

Updated on: 20-Jun-2020

299 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements