I have two arrays that are same length and type and I would like to combine them into one with same length and 2 rows.
for example:
VolunteeringForWardLogicData[] v1, v2;
and I want each of the arrays will be in a row in this matrix:
VolunteeringForWardLogicData[,] arr= new VolunteeringForWardLogicData[2, v1.Length];
how can i do it? i saw this example Combining same length arrays into one 2d array in f#
but I did not really understand how it works.
Thanks in advance.