Пример #1
0
 protected void wrtieMsgTo()
 {
     if (client == null) {
         client = new FastIPCClient();
         client.create(FastIPCNative.genServerName(serverName), blockSize);
     }
     client.write(txtMsg.Text);
     txtSended.Text += "\r\n���� " + txtMsg.Text;
 }
Пример #2
0
 protected void wrtieMsgTo()
 {
     if (client == null)
     {
         client = new FastIPCClient();
         client.create(FastIPCNative.genServerName(serverName), blockSize);
     }
     client.write(txtMsg.Text);
     txtSended.Text += "\r\n发送 " + txtMsg.Text;
 }