//
// 摘要:
// 搜索与指定谓词所定义的条件相匹配的元素,并返回整个 System.Collections.Generic.List<T> 中的第一个匹配元素。
//
// 参数:
// match:
// System.Predicate<T> 委托,用于定义要搜索的元素的条件。
//
// 返回结果:
// 如果找到与指定谓词定义的条件匹配的第一个元素,则为该元素;否则为类型 T 的默认值。
//
// 异常:
// System.ArgumentNullException:
// match 为 null。
public T Find(Predicate<T> match);