我正在发送带有此功能的套接字:
public static List<Socket> samp = new List<Socket>();
IPHostEntry host = null;
Socket sock;
host = Dns.GetHostEntry(serverip);
foreach (IPAddress address in host.AddressList)
{
IPEndPoint ipe = new IPEndPoint(address, 7777);
sock = new Socket(ipe.AddressFamily, SocketType.Stream, ProtocolType.Tcp);
sock.Connect(ipe);
if (sock.Connected)
{
samp.Add(sock);
}
}
samp.Add(袜子);发送我的IP,例如127.0.0.1,如何将字符串添加到ip?例如:昵称:127.0.0.1?提前致谢!或者如何发送两个插座?例如: 第一个插座 - 昵称 第二 - ip Thnx很多