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
You could use linq to remove the empty fields.
var joinedString = String.Join(",", array.Where(c => !string.IsNullOrEmpty(c));