C#用Array类的FindAll方法和List<T>类的Add方法按关键词在数组中检索元素并输出
目录一、使用的方法1.Array.FindAll(T[],Predicate)方法(1)定义(2)示例2.List类的常用方法(1)List.Add(T)方法(2)List.RemoveAt(Int32)方法(3)List.Insert(Int32,T)方法(4)List.RemoveAll(Predicate)方法(5)List.RemoveRange(Int32,Int32)方法(6)示例二、