我想做一个像即时通讯工具一样工作的程序,我已经完成了,但我不知道如何向特定的 IP 地址发送/接收字符串。
我给自己包括了一个方法,这些东西属于:
//is called every second and when you commit a message
public void Update(ref eStatus prgmStatus, ref eProfile userProfile)
{
UpdateUI(ref prgmStatus);
[ Some other Update Methods ]
[ Catch the string and add it to userProfile.CurrentChatHistory]
}
public void EnterText(object sender, EventArgs e)
{
_usrProfile.CurrentChatHistory.Add(chatBox.Text);
[ send chatBox.Text to IP 192.168.0.10 (e.g.) ]
}
我想在不运行任何额外服务器软件的情况下使用客户端到客户端系统。
我可以使用哪些系统命名空间和方法来实现这一点?