学习无止境!

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2011年7月11日

摘要: Delegatesnamespace System { public delegate void Action<T>(T obj); public delegate bool Predicate<T>(T obj); public delegate U Converter<T,U>(T from); public delegate int Comparison<T>(T x, T y);}List<T>public class List<T> : … {public int FindIndex(Predicate<T 阅读全文
posted @ 2011-07-11 16:32 钻石眼泪 阅读(1083) 评论(0) 推荐(0) 编辑