if (listBox1.GetSelected(0))
{
richTextBox1.AppendText(Environment.NewLine + "upgrade cottage" + listBox2.SelectedItem);
}
WHen this code is executed, it prints into the richTextBox1 the words upgrade cottage + the selection of listbox 2, I was wondering how do I put a space between the two?