Closed GoogleCodeExporter closed 9 years ago
Richer number formatting can be used targeting specific placeholders like
`{0:N}` for the amount. Doing so, the currency number formatting will be
applied to the first member of the format for the money (the amount).
<pre>
Assert.That(1500m.Dkk().Format("{0}"), Is.EqualTo("1500"));
Assert.That(1500m.Dkk().Format("{0:N}"), Is.EqualTo("1.500,00"));
</pre>
Original comment by danielgo...@gmail.com
on 17 Mar 2013 at 9:09
Current feature set is enough to support use case.
Original comment by danielgo...@gmail.com
on 17 Mar 2013 at 9:12
Original issue reported on code.google.com by
danielgo...@gmail.com
on 17 Mar 2013 at 9:00