How do I make this output to a string?
List Client = new List(); foreach (string listitem in lbClients.SelectedItems) { Clien
My suggestion:
using System.Linq; string myStringOutput = String.Join(",", myArray.Select(p => p.ToString()).ToArray());
reference: https://coderwall.com/p/oea7uq/convert-simple-int-array-to-string-c