I am displaying a currency value of up to 5 decimal places with {0:C5}
but when there are insignificant zeros, they should not get shown.
With a simple decimal I simply use {0:0.#####}
but I need this with Currency Formatters as it's a multi-language system.
Edit: Forgot to mention I am using composite formatting https://msdn.microsoft.com/en-us/library/txafckwd(v=vs.110).aspx
A solution is to use
IFormatProvider
andICustomFormatter
Below is the usage and output