M
Manoj Shirahatti
Hello All,
I have String "7.5" . I want to convert it to string of the form "7,5".
Basically the decimal separator has to be changed on the CurrentCulture.
I am to do this when the value is double for eg double temp = 7.5 .
I use the following
convert = temp.ToString(CultureInfo.CurrentCulture);
I get the value as 7,5.
How do i get it when it is string.
Manoj
I have String "7.5" . I want to convert it to string of the form "7,5".
Basically the decimal separator has to be changed on the CurrentCulture.
I am to do this when the value is double for eg double temp = 7.5 .
I use the following
convert = temp.ToString(CultureInfo.CurrentCulture);
I get the value as 7,5.
How do i get it when it is string.
Manoj