using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
string[] arr = { "Blade Runner", "The Matrix", "Star Wars", "The Terminator" };
string s = string.Join(" : ", arr);
Console.WriteLine(s);
}
}
}
/*
run:
Blade Runner : The Matrix : Star Wars : The Terminator
*/