I have array of string from the DataTable, so i'm use this code to get list :
ListTid = string.Join(",", DtTable.AsEnumerable().Select(r => r["NameColumn"].ToString()));
then i have result like this :
LIS1, LIST2, LIST3
How if i want result like this
'List1','List2','List3'
's in addition to,s between each element? What have you tried?