How to put data from a row of a datatable to list of string

can i do it without using for each activity, just through assign?
Thank you.

1 Like

You can use the String.Join method. For example,

CombinedText = String.Join(",", SampleDT(0).ItemArray)
3 Likes

I feel so stupid, It seems that Iā€™m tired and have to rest, how could I forget about ItemArray ? (

Thank you!!

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.