在vb.net中使用TcpClient发送字符串

时间:2009-09-13 02:20:24

标签: vb.net tcp

我的tcp客户端已连接到服务器脚本!现在它已经连接了,它怎么能发送一个简单的字符串?我不知道.Client.Send方法的任何重载甚至意味着什么,或者如何使用它们。我已经在服务器端设置了一个系统来解析在服务器端收到字符串时的字符串,但我不知道如何向它发送一个简单的字符串。

感谢您的帮助!

顺便说一下,这是在vb.net中。

1 个答案:

答案 0 :(得分:1)

多线程,但是你的代码用于将信息发送到一个子程序,然后将用于接收信息的代码放入完全不同的子路由,然后将两个不同的子程序放在两个不同的线程上,如此

Imports System.Threading.Thread

Dim SendThread as threading.thread
Dim ReceiveThread as threading.thread

SendThread = new threading.thread(addressof "Name of Subroutine")
sendthread.start()

等接收网络数据包做同样的事情