摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace CsharpDataStructure 7 { 8 class Program 9 {10 //声明:本程序只说明几种常见委托和代理的使用,名称的定义不是很规范11 public delegate void MyAction<T>(T obj);//自己定义的委托,无返回值,只有一个泛型参数12 static vo... 阅读全文
posted @ 2013-05-03 19:13 楠楠IT 阅读(292) 评论(0) 推荐(0) 编辑