R
Ron
Hi all,
I created a POP3 client (with the help of some examples of the net
.
I'm using a StreamReader to read from the NetworkStream as follows:
while (sTmp != ".")
{
sMsg += sTmp + "\r\n";
sTmp = strmReader.ReadLine();
}
The problem is that this is really slow and uses a lot of CPU time.
Is there a faster way to do this??
Thanx,
Ron
I created a POP3 client (with the help of some examples of the net

I'm using a StreamReader to read from the NetworkStream as follows:
while (sTmp != ".")
{
sMsg += sTmp + "\r\n";
sTmp = strmReader.ReadLine();
}
The problem is that this is really slow and uses a lot of CPU time.
Is there a faster way to do this??
Thanx,
Ron