I am in the process of translating a C# Class into a VB.NET class. My problem is, I have one line that I cannot decipher. This line is:
VB Code:
  1. networkStream.BeginRead(bytes,1,1,new AsyncCallback( TcpDataRecieve ), myPOP);
TcpDataRecieve is declared as:
VB Code:
  1. Public Sub TcpDataRecieve(ByVal ar As IAsyncResult)
Can anybody help me decipher this line? It is the only one I cannot decipher