How convert String to Fixed wchar Array?

Marcone marcone at email.com
Sat Oct 17 00:23:43 UTC 2020


How convert String to Fixed wchar Array?

import std;

void main(){
     string name = "Marvin";
     wchar[255] wtext = name.to!(wchar[]); // Can not convert.
     writeln(wtext);
}


More information about the Digitalmars-d-learn mailing list