예제 #1
0
파일: Form1.cs 프로젝트: washheart/fastipc
 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;
 }