How convert DList!string to string array

Denis Mezhov d.o.mezhov at gmail.com
Sat Feb 15 08:30:39 PST 2014


Please help. How to convert DList!string to string array?

auto a = DList!string();
a.insertFront("123");
a.insertFront("abc");

string[] b = a[];
Array!string c = a[];

Don't work.




More information about the Digitalmars-d-learn mailing list