Consider a string array shaped like this:
string[] someName = new string[] { "First", "MiddleName", "LastName" };
The requirement is to get the first character from each element in the array.
i.e.
FML
Previously have tried:
string initials = string.Concat(someName.Select(x => x[0]));
Question: What LINQ query would you write to concatenate all the name contained in the string array to give the initials?