J
JJ
Hi all,
I've got a very strange problem: I want to convert the commas in strings to
dots. This is the function I wrote for this action:
private string ddot(double input){
string str = Convert.ToString(input);
str.Replace(",", ".");
return str;
}
For some reason, this function returns a string including a comma in place
of a dot.
Thanks in advance,
Vincent
I've got a very strange problem: I want to convert the commas in strings to
dots. This is the function I wrote for this action:
private string ddot(double input){
string str = Convert.ToString(input);
str.Replace(",", ".");
return str;
}
For some reason, this function returns a string including a comma in place
of a dot.
Thanks in advance,
Vincent