Sending Data on Sockets
Visual Basic
2
Posts
2
Posters
0
Views
1
Watching
-
How i can send a data contained in object of String on a socket , whose send method requires a byte array as arrgument to send? what conversions i have to make.:confused:
-
How i can send a data contained in object of String on a socket , whose send method requires a byte array as arrgument to send? what conversions i have to make.:confused:
Try:
arrBytes() As Byte = System.Text.Encoding.Default.GetBytes(strString)