Hi
hope you are doing good
May i know how it looks in datatable may be a screenshot if possible
use a output datatable and writeline so that we can see that in the output panel
@Shubham_Varshney
I willl have a closer Look, once my train is departed and have found a seat
a correction conversion into a dict via linq Could be an approach for each row returned as a dictlist. Maybe each dict can later be used directly for the add Queue item info
From r In dtData.AsEnumerable
Select ia = r.ItemArray.toList
Select ia.ConvertAll(Function (e) e.ToString.Trim).toArray
returns:
EnumerableRowCollection<string>
{
string[2]
{
“text”,
“silly Text”
},
string[2]
{
“I dont like Spaces”,
“Why?”
}
}
And with my silly trick from the past (hope you remember)
Assign: dtCorrected = yourDTVar.Clone
Assign: dtCorrected
(From r In dtData.AsEnumerable
Select ia = r.ItemArray.toList
Select ic = ia.ConvertAll(Function (e) e.ToString.Trim).toArray()
Select dtCorrected.Rows.Add(ic)).CopyToDataTable()
is doing:
[Column1,Column2
text,silly Text
I dont like Spaces,Why?
]