Hello, I have this code on a button.
txtresultado.Text = Math.Round(txtsalmin.Text * 0.2, 2).ToString
In that it takes the value of the salmin.text and multiply poe 0.2 and appears in txtresultado.text with a maximum of 2 houses after the comma. And my problem is the following, for example if doing 937 * 0.2 equals 187.4 and it appears in txtresultado.text, so far everything is fine, but I would like it to appear 187,40 because I am working with money in this system and have to appear the 2 houses after the comma.
Could someone help me?