可能是一个简单的问题,但在网上找不到帮助。我在c#中编写了一个checkers应用程序,并尝试使用xmlrpc.net版本2.5建立连接,以便一个用户(客户端)可以键入另一台计算机(服务器)的IP地址,并能够发回消息更新董事会的变化。
以下是我正在尝试做的一些伪代码,
public void startConnecting()
{
//set up xml-rpc to connect to specified ip address
//if successful start the game
//start a receive message thread
//sendMsg(name);
}
private void button1_Click(object sender, EventArgs e)
//start the search for the ip address stored in textBox2
{
name = textBox1.Text;
startConnecting();
}
public void sendMsg(string s)
{
while (true)
//send msg
}