So for example if you run: (Math.Round(100 * (4666 / (double)82343), 2))
on rextester.com it returns 5,67
instead of 5.67
how can I make sure this operation and this operation ONLY returns a dot (while leaving it as , for everything else)
I don't want to .replace it in case other characters are possibly used like (space) which i've seen used before.