Hi
I have two same type class objects
jcreceivingdetailsame = new Inventory_GotLineContract(); and jcreceivingdetaildifferent = new Inventory_GotLineContract();
And I have List result = new List(Types::Class);
No I want to add this two objects jcreceivingdetailsame and jcreceivingdetaildifferent insert into this result. But I do not want to add them in series like
result.addEnd(jcreceivingdetailsame); result.addEnd(jcreceivingdetaildifferent );
I want to add them parallel.
I try it in Array, but array in X++ make me so confused because it does not allow me to use result[i,j].

