I\'m converting an array into a string using String.Join. A small issue I have is that, in the array some index positions will be blank. An example is below:
String.Join
string.Join(",", Array.FindAll(array, a => !String.IsNullOrEmpty(a)));
How about this one? Cons and pros comparing to LINQ solution? At least it shorter.