Now in my program in c# that simulates the working of a lan-messenger I need to show the people who are currently online with one remote host-name on each line. However the problem here is that in order to do that I am using the function
//edited this line out, can't find a .Append for listBox or .AppendLine
//listBox.Append(String );
listBox.Items.Add(new ListItem(String));
On doing so, the carriage return and new line character(ie.. \r and \n) are being displayed as tiny little rectangular boxes at the end of the hostname. How do I get rid of that?