码迷,mamicode.com
首页 > Windows程序 > 详细

c# 匿名方法

时间:2020-07-19 15:52:53      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:strong   anon   ted   代码块   gate   ber   nbsp   line   class   

匿名方法(Anonymous methods) 提供了一种传递代码块作为委托参数的技术

delegate void NumberChanger(int n); ... NumberChanger nc = delegate(int x) { Console.WriteLine("Anonymous Method: {0}", x); };


nc(10);

c# 匿名方法

标签:strong   anon   ted   代码块   gate   ber   nbsp   line   class   

原文地址:https://www.cnblogs.com/guomengkai/p/13339336.html

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