Alexandre:

void InjectData(T)(ref T BaseSrc, string data)
{
        memcpy(&BaseSrc, data.ptr, data.length);
}

It's possible to improve this function ?

You can add some modifiers (like @nogc for dmd 2.066), and the name of D functions starts with a lower case.

Bye,
bearophile

Reply via email to