Ive developed a simple p2p chat program, it works fine up until i get to the input/output streams
in my void that recieves incoming text i have the following code...
public void listen()
{
while (true)
{
again:
try
{
convobox.AppendText(Input.ReadLine);
}
catch
{
goto again;
}
}
}
it says that it has some invalid arguments,
what am i doing wrong?