Hi,
In a attempt to create a dynamic multi diminsion array i am using a ArrayList object as i do not know how many dimension i will need during runtime. My code is
ArrayList mySubArray = new ArrayList();
ArrayList myArray = new ArrayList();
//while loop which can have any amount of iterations
mySubArray.Add( sName);
mySubArray.Add( sTitle);
mySubArray.Add( sAddress);
myArray.Add(myS ubArray.Clone() );
mySubArray.Clea r();
Loop
QUESTION
how do i extract the nodes from my subArray object that is within the myArray ArrayList.
Thanks.
In a attempt to create a dynamic multi diminsion array i am using a ArrayList object as i do not know how many dimension i will need during runtime. My code is
ArrayList mySubArray = new ArrayList();
ArrayList myArray = new ArrayList();
//while loop which can have any amount of iterations
mySubArray.Add( sName);
mySubArray.Add( sTitle);
mySubArray.Add( sAddress);
myArray.Add(myS ubArray.Clone() );
mySubArray.Clea r();
Loop
QUESTION
how do i extract the nodes from my subArray object that is within the myArray ArrayList.
Thanks.
Comment