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.
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.