dstring dstrValue = to!dstring(5);
dchar dcharValue = to!dchar(dstrValue);
... this,
dchar dcharValue = to!dchar(5);
... writes out '\x005' ..or something close to that.
dstring dstrValue = to!dstring(5);
dchar dcharValue = to!dchar(dstrValue);
... this,
dchar dcharValue = to!dchar(5);
... writes out '\x005' ..or something close to that.