Quantcast
Viewing all articles
Browse latest Browse all 4

Answer by s15199d for How do you display a string array in a text box

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;

Viewing all articles
Browse latest Browse all 4

Trending Articles