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);
}
  • How convert String to Fixed w... Marcone via Digitalmars-d-learn

Reply via email to