K
Kevin R
Hi All,
I am using
for(i = . . . . .)
sw.WriteLine(string.Format("{0} {1}", num1, num2));
and I am getting
12 123
1234 122
12435 15556
What I want is
12 123
1234 122
12435 15556
i.e. each number justified to the right hand side of its column
I tried using {0:#######}
but I am very new to this having just moved over from
C/C++
Any Ideas?
Kevin R
I am using
for(i = . . . . .)
sw.WriteLine(string.Format("{0} {1}", num1, num2));
and I am getting
12 123
1234 122
12435 15556
What I want is
12 123
1234 122
12435 15556
i.e. each number justified to the right hand side of its column
I tried using {0:#######}
but I am very new to this having just moved over from
C/C++
Any Ideas?
Kevin R