Ciao a tutti,
sto cercando di inviare stringhe tramite un networkstream ma mi dà un errore...
Riporto il codice:
codice:
Dim stream As NetworkStream             
stream = client.GetStream()           
If stream.CanRead Then            
Dim c(client.ReceiveBufferSize) As Byte        
Dim size = c.Length
stream.Read(c, 0, size) 
End If
Dice che il flusso di informazioni non supporta funzioni di ricerca(su stream.canread)...
che devo fare??
Ciao.