I have some list of gps coordinates of latitude and longitude. How can I add random int value at the end of the float variable of latitude. I have tried this...
float log = 77.567635f;
Random rand = new Random();
int r = rand.Next(1, 20);
Let suppose value of r is 12, I would like to add to log '77.567635' + r.
My expecting result will be '77.567647'