string.Format("[{0}]", string.Join(",", array.Select(i => "{" + i.ToString() + "}")));
solved How to build an array of objects and then convert the whole array to an string [closed]
string.Format("[{0}]", string.Join(",", array.Select(i => "{" + i.ToString() + "}")));
solved How to build an array of objects and then convert the whole array to an string [closed]