Hi,
Is there a more elegant way to do that (in order to wrap C code, don't ask me why it is an array of longs).
long foo[4] = { 0, 1, 2, 3 };
String bar(static_cast<int>(foo[0]));
bar << " " << static_cast<int>(foo[1])
<< " " << static_cast<int>(foo[2])
<< " " << static_cast<int>(foo[3]);
I briefly searched in the forum (and in the documentation) an obvious trick without success, thanks.
