↧
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;
View ArticleAnswer by Thierry for How do you display a string array in a text box
I don't know if it's the best way, but here is a method on how it can be achieved.
View ArticleAnswer by Nolonar for How do you display a string array in a text box
You will need to convert your string[]s into strings. You can do this easily with the string.Join() method:string separator = ", ";string[] mag = new string[] { "hello", "world" };textBoxmag.Text =...
View ArticleHow do you display a string array in a text box
Hi I am new to C# and I having problems with my first windows form application.I have data coming in from serial port and have worked out a way of processing and storing the data into 3 different...
View Article