csharp lambda demo,delegate的用法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp lambda demo,delegate的用法相关的知识,希望对你有一定的参考价值。

            Action<int> printRoot = delegate(int number)
            {
                Console.WriteLine(Math.Sqrt(number));
            };
            
            
            
                     Action<IList<double>> printMean = delegate(IList<double> numbers)
            {
                double total = 0;
                foreach (double value in numbers)
                {
                    total += value;
                }
                Console.WriteLine(total / numbers.Count);
            };

以上是关于csharp lambda demo,delegate的用法的主要内容,如果未能解决你的问题,请参考以下文章

csharp 声明Lambdas

csharp 表达Lambda

csharp Lambda连接表

csharp 致电AWS Lambda

csharp 加入LINQ和Lambda

csharp Lambda Expression(Basic ++)。cs