It\'s probably something silly I missed, but I try to concatenate a list of integers instead of summing them with:
integerArray.Aggregate((accumulator, piece) =&
Just to add another alternative to @Marc's
var list = string.Join( ",", integerArray.Select( i => i.ToString() ).ToArray() );