S
Serge Bollaerts
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(_svrSocket.AcceptSocket())
Dim clientThread1 As New Thread(AddressOf clientRequest.Process)
Dim clientThread2 As New Thread(New ThreadStart(AddressOf
clientRequest.Process))
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(_svrSocket.AcceptSocket())
Dim clientThread1 As New Thread(AddressOf clientRequest.Process)
Dim clientThread2 As New Thread(New ThreadStart(AddressOf
clientRequest.Process))
Thanks a lot,
Serge