Question:
How can i convert decimal to string without rounding and with specific format?It is my value;
result = "4.569,99"
. I can check to culture for seperators like thisAnswer:
Having unwanted digits after the decimal point you have to round the value, the question is how to round it. In your case it seems that you want to truncate (4569.996
-> 4569.99
), i.e. round to zero:If you have better answer, please add a comment about this, thank you!