I want to write a number (will vary) of data using the same format on a single line like:
i know i can do this like:
LogWriter.Write Line();
for (i=0; i<Number; i++)
{
LogWriter.Write ("{0,3} ", Data[i]);
}
but that seems a bit clumsy to me
I would like to have this in ONE statement (or less 'long')
is this posisble?
i know i can do this like:
LogWriter.Write Line();
for (i=0; i<Number; i++)
{
LogWriter.Write ("{0,3} ", Data[i]);
}
but that seems a bit clumsy to me
I would like to have this in ONE statement (or less 'long')
is this posisble?
Comment