如何在C#中基于UDP/IP协议接受数据包
如何在C#中基于UDP/IP协议接受数据包!谢谢回复!
PS:也可直接回复到邮箱!fatglasses@163.com
问题点数:20、回复次数:2Top
1 楼weisunding(鼎鼎)回复于 2005-08-17 17:21:46 得分 20
System.Net.Sockets.UdpClient uc = new System.Net.Sockets.UdpClient(5000);
System.Net.IPEndPoint ipRemote = null;
byte[] byes = uc.Receive(ref ipRemote);Top
2 楼iori40995(小刘)回复于 2005-08-17 19:49:48 得分 0
楼上正解,不过是阻塞的Top




