Hi, May i ask how do i display a DataRow array using Writeline? I am doing this to check whether the values filtered from the data table is correct.
- First convert it to datatable using DataRowarray.CopyToDatatable()
- use Output Datatable β converts datatable to string
- use this string in writeline
SideNote : These steps are already available in our forum (might be in different threads). Search if you wanna know more
Regards,
Dom
6 Likes
Hi @Derek_Xu,
use For Each activity to loop through the DataRow array
inside for each loop use write line or log message
String.Join(",",row.ItemArray)
Regards,
Arivu
4 Likes
Thanks for the help
2 Likes
This solution isnβt accurate to his original question of printing from an Array (rather than a data table per your .xaml solution
this is data table not datarow.
Correct this was not an answer to your question. Did you get one?..that worked