I have a DataTable that returns
IDs ,1 ,2 ,3 ,4 ,5 ,100 ,101
I want to convert this to single string value, i.e:
,1,2,3,4,5,100
You can use MoreLINQ extension
var singleString = _values.ToDelimitedString(",");