I'm trying to build my first app, this is just a test.
when im typing a first name and a surname there's no space between them when i hit the button.
can anyone help me
heres the code
String firstName;
string messageText;
string surName;
messageText = "Your name is: ";
//==========================
//=GET MESSAGE FROM TEXTBOX=
//==========================
firstName = forNavn.Text;
surName = efterNavn.Text;
//MessageBox.Show(messageText + firstName);
TextMessage.Text = messageText + firstName + surName;