摘要:
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 阅读全文