I have this code in my android application:
double lat = Double.Parse (latCoordinate);
When device language is english every thing is right, but when I select other languages it is not working.
In some languages it say that char '.' is not valid. An in some others parser the double string bad.for example parse "-95.22222" tp -9.522222 .
How can i fix this issue?