Format currency without rounding
I have the need to format a decimal number as currency but I do not wish for any rounding to occur in the process. For example (example culture is en-US) Dim money = 1234.556789D money.ToString("C") ' Yields $1,234.56 (notice the rounding & truncating) money.ToString("C99") ' Yields $1,234.556789000000000000....0 -- close but not perfect, those trailing zeros are unwanted. ' I want something that would result in this... money.ToString("??") ' Yields $1,234.56789 ' likewise.... money = 0.1D money.ToString("??") ' Yields $0.10 (notice that it at least matches the culture's currency format -- two