usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Net;usingSystem.Net.Sockets;usingSystem.Text;usingSystem.Threading.Tasks;usingSystem.Windows.Forms;namespaceSocketClient{publicpartialclassSocketClient:Form{publicdelegatevoidUpdateReceiveMsgCallback(stringmsg);//定义委托变量byte[]dataBuffer=newbyte[10];//定义一个byte类型数组IAsyncResultresult;publicAsyncCallbackpfnCallBack;publicSocketclientSocket;//机关函数publicSocketClient(){InitializeComponent();//初始化tb_ServerIP.Text=InitializeInfo();tb_ServerPort.Text="8000";}
1