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
Updated on: 2020-06-20T10:02:38+05:30

490 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements