How can I use String.Format
in C# so doubles are displayed like this:
example:
___-1.000
____1.000
__100.123
-1000.321
_1000.214
etc...
Where _ is space (" "
);
All I can do is String.Format("{0:F3}", -123.321);
How can I use String.Format
in C# so doubles are displayed like this:
example:
___-1.000
____1.000
__100.123
-1000.321
_1000.214
etc...
Where _ is space (" "
);
All I can do is String.Format("{0:F3}", -123.321);
You can use alignment:
where 10 is preffered length.
See Composite Formatting.
Found a quick article, in short:
Source: Here <- Look here for more.