I have DataTable and set Array value to specific cell. How can i get and print this Array?Test.xaml (9.9 KB) Here is the example of haw i tried print Array.
Hi @Damir,
Thats very simple you join the value with “|” Char and you can get the cell value and split the value which you joined character “|”
Ex: string [ ] arr=yourString.split(“|”,stringsplitoption.None)
Through for each you can print that “arr” value
@Damir
give a try on the write line with: String.Join(“|”, row.Field(Of String())(“123”))
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.