Using c# with a windows form to read data from a data base.
while (reader.Read())
{
textbox1.Text += reader["Person"] + reader["Occur"].ToString() + "\n";
}
Can somebody clear up why this displays like:
John
8
Instead of:
John 8
EDIT: these are just an example of what's in my database table