私が探しているのは、単純なTCPClient/Listener( "hello world")の例だけです。私は初心者で、Microsoft TCPClient/Listenerクラスの例は私が探しているものではありません。私が探しているのは、TCPClientがメッセージ「Hello world」を送信し、TCPListenerがメッセージを取得して「I got your hello world message」を返信することだけですか。
少し助けがあれば素晴らしいでしょう。私が持っているのは、TCPClientが「Hello World」を送信することだけです。これはうまくいくでしょうか?
Dim port As Int32 = 13000
Dim client As New TcpClient("192.168.0.XXX", port)
' Translate the passed message into ASCII and store it as a Byte array.
Dim data As [Byte]() = System.Text.Encoding.ASCII.GetBytes("Hello World")
' Get a client stream for reading and writing.
' Stream stream = client.GetStream();
Dim stream As NetworkStream = client.GetStream()
' Send the message to the connected TcpServer.
stream.Write(data, 0, data.Length)
これらの2つのチュートリアルは、最低限の方法でそれを行う方法を示しているはずです。最初のものはあなたが望むものにもっと向けられています。
これを試してください: http://www.nullskull.com/articles/20020323.asp
またはこれ: http://www.codeproject.com/Articles/38914/A-TCP-IP-Chat-Program