Trass3r schrieb:
This works:

string foo(const string[] members)
{
    string result;
    foreach(m; members)
        result ~= m ~ " ";
    return result;
}


Furthermore there seems to be no way to use these member names in a __traits(getMember, class, m) call.

This is driving me crazy.

Reply via email to