I need to convert a decimal to a string with N decimals (two or four) and NO thousand separator:
'XXXXXXX (dot) DDDDD'
The problem with CultureInfo.InvariantCulture
is that is places ',' to separate thousands.
UPDATE
This should work for decimal and double types.
My previous question: Need to convert double or decimal to string