0
That much I know. My question is, why one PC converts 1 to string and gets "1" and the other does the same thing and gets "1.0"?
0
Hi
This is happening due to this res = "1.0" {string} while converting.
because you are using int.TryParse so u have to pass the values like 1,2,123,10 etc in the res parameter.
I think u got it.