Hello everybody,
I'm creating (Hum... trying to:) a small proxy server based on a sample I
found on the net. Could someone explain me the difference between
clientThread1 and clientThread2?? ? There something mystic I cannot
realize...
Dim clientRequest As New ProxyClient(_sv rSocket.AcceptS ocket())
Dim clientThread1 As New Thread(AddressO f clientRequest.P rocess)
Dim clientThread2 As New Thread(New ThreadStart(Add ressOf
clientRequest.P rocess))
Thanks a lot,
Serge
I'm creating (Hum... trying to:) a small proxy server based on a sample I
found on the net. Could someone explain me the difference between
clientThread1 and clientThread2?? ? There something mystic I cannot
realize...
Dim clientRequest As New ProxyClient(_sv rSocket.AcceptS ocket())
Dim clientThread1 As New Thread(AddressO f clientRequest.P rocess)
Dim clientThread2 As New Thread(New ThreadStart(Add ressOf
clientRequest.P rocess))
Thanks a lot,
Serge
Comment