客户端连接服务器c#网络
本文关键字:网络 服务器 连接 客户端 | 更新日期: 2023-09-27 18:18:13
IPAddress ip = new IPAddress(new byte[] (127,0,0,0));
TcpClient con = new TcpClient ();
con.Connect(ip,5020);
byte[] dtabfr;
dtabfr = Encoding.ASCII.GetBytes(textBox1.Text);
NetworkStream strm =con.GetStream();
strm.Write(dtabfr,0,dtabfr.Length);
strm.Close();
con.Close();
try
IPAddress ip = new IPAddress(new byte[]{127,0,0,0});
或者直接做
var ip = IpAddress.Parse("127.0.0.0");