I know how to do it with the activities but i Want to do it in a linq
I need to put and Array into Another Arry
So i do a for each in the first Array and then separate by commas and add that arry result to the arrays of arrays.
I have this array {“1,2,3,4”,“5,6,7,8”}
and the output that i want is
{{“1”,“2”,“3”,“4”},{“5”,“6”,“7”,“8”}}