示例#1
0
        static void MakeClientCallToServer(object objMsg)
        {
            string      msg    = (string)objMsg;
            MyTcpClient client = new MyTcpClient(IPAddress.Loopback, 55555);

            client.ConnectToServer(msg);
        }
示例#2
0
 static void MakeClientCallToServer(object objMsg)
 {
     string msg = (string)objMsg;
     MyTcpClient client = new MyTcpClient(IPAddress.Loopback, 55555);
     client.ConnectToServer(msg);
 }