I like @ dasblinkenlight's solution, but I would like to point out that the select statement is optional.
This code produces the same result for an array of strings:
string[] myArray = {"String 1", "String 2", "More strings"}; Console.WriteLine("My array: {0}", string.Join(", ", myArray));
It seems to me that a little easier on the eyes than less code to read.
( linqpad is a fantastic application for testing code snippets like this.)
source share