Really simple question: How to convert ArrayList of int to int[]?

S

SSW

Try Below code...

ArrayList atl = new ArrayList(3);
atl.Add(1);
atl.Add(2);
atl.Add(3);
int[] i= (int[])atl.ToArray(System.Type.GetType("System.Int32"));

Hope this helps.

Thanks,

sswalia
MCAD, MCAD, OCA
 
H

Homa

Thanks, that works now

Homa Wong


SSW said:
Try Below code...

ArrayList atl = new ArrayList(3);
atl.Add(1);
atl.Add(2);
atl.Add(3);
int[] i= (int[])atl.ToArray(System.Type.GetType("System.Int32"));

Hope this helps.

Thanks,

sswalia
MCAD, MCAD, OCA

Homa said:
As titled.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,434
Messages
2,571,691
Members
48,796
Latest member
Greg L.

Latest Threads

Top