This will show the string arrays as commas separated values:
string strLat = String.Join(", ", lat);string strLon = String.Join(", ", lon);textBoxlat.Text = strLat;textBoxlon.Text = strLon;
This will show the string arrays as commas separated values:
string strLat = String.Join(", ", lat);string strLon = String.Join(", ", lon);textBoxlat.Text = strLat;textBoxlon.Text = strLon;