首页 > 代码库 > 《深入理解C#》代码片段-List<T>.ConvertAll(TOutput)方法实战
《深入理解C#》代码片段-List<T>.ConvertAll(TOutput)方法实战
1 static void Main(string[] args) 2 { 3 List<int> integers = new List<int>(); 4 for (int i = 1; i < 5; i++) 5 { 6 integers.Add(i); 7 } 8 Converter<int, double> converters = TakeSquareRoot;//创建委托实例 9 List<double> doubles;10 doubles = integers.ConvertAll<double>(converters);//调用泛型方法转换列表11 foreach (var item in doubles)12 {13 Console.WriteLine(item);14 }15 16 Console.ReadKey();17 }18 19 public static double TakeSquareRoot(int x)20 {21 return Math.Sqrt(x);22 }
《深入理解C#》代码片段-List<T>.ConvertAll(TOutput)方法实战
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。