摘要: 一、摘要 总结UDP传输协议的异步实现。二、实验平台 visual studio 2010三、实验实例 服务器端代码:using System;using System.Collections.Generic;using System.Text;using System.Net;using System.Net.Sockets;using System.Threading;namespace AsyncServer{ // 定义 UdpState类 public class UdpState { public UdpClient udpClient; ... 阅读全文
posted @ 2012-08-15 11:19 sunev 阅读(31705) 评论(0) 推荐(6)