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:
TcpDataRecieve is declared as:VB Code:
networkStream.BeginRead(bytes,1,1,new AsyncCallback( TcpDataRecieve ), myPOP);
Can anybody help me decipher this line? It is the only one I cannot decipherVB Code:
Public Sub TcpDataRecieve(ByVal ar As IAsyncResult)




Reply With Quote