U
Udi
Hi,
I tried looking for it in the documentation but with no luck.
What's the equivalent C control strings in C# for the following:
"%3d" ? (space padding)
"%-3d" ? (left alignment)
"%+3d" ? (adding +/- sign)
"% 3d" ? (adding a space in case of positive vaklue)
(E.g - for zero padding - "%03d" is {0:d3}, but how do I do space
padding - "%3d"? )
I'll appreciate it if you can direct me to the relevant link.
Thanks!
Udi
I tried looking for it in the documentation but with no luck.
What's the equivalent C control strings in C# for the following:
"%3d" ? (space padding)
"%-3d" ? (left alignment)
"%+3d" ? (adding +/- sign)
"% 3d" ? (adding a space in case of positive vaklue)
(E.g - for zero padding - "%03d" is {0:d3}, but how do I do space
padding - "%3d"? )
I'll appreciate it if you can direct me to the relevant link.
Thanks!
Udi