posted on Friday, November 12, 2004 8:07 AM
by
warstar
Arraylist to String[]
Hi all,
Just had the problem of that i needed to make a arraylist to a string array this is the way i did it:
string
[] test = frames.ToArray(Type.GetType("System.String")) as string[];
In this case frames is the arraylist;