码迷,mamicode.com
首页 > 其他好文 > 详细

LinQ 泛型方法Array>ForEach在数组中进行迭代并调用自定义的委托

时间:2014-07-13 12:53:19      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   for   cti   

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;
using System.IO;

namespace LambdaExpressionAction
{
    class Program
    {
        static void Main(string[] args)
        {
            //定义输出委托
            Action<double> print = amount => Console.WriteLine("{0:c}", amount);
            //定义新委托并引用上面的输出委托
            Action<double> michiganSalesTax = amount => print(amount *= 1.06);
            //定义一个数组
            var amounts = new double[] { 10.36, 12.00, 134 };
            //泛型方法Array>ForEach在amounts中进行迭代并调用michiganSalesTax
            Array.ForEach<double>(amounts, michiganSalesTax);
            Console.ReadLine();
        }
    }
}

 

LinQ 泛型方法Array>ForEach在数组中进行迭代并调用自定义的委托,布布扣,bubuko.com

LinQ 泛型方法Array>ForEach在数组中进行迭代并调用自定义的委托

标签:style   blog   color   os   for   cti   

原文地址:http://www.cnblogs.com/swtool/p/3840751.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!