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

C#控制台基础 返回类型为void的 int 类型 参数委托与匿名函数

时间:2016-10-19 20:05:00      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:

1 code

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 using System.Threading.Tasks;
 6 
 7 namespace ConsoleApplication2
 8 {
 9     //返回类型为void的 int 类型 参数委托
10     public delegate void MyFirst(int num);
11     class Program
12     {
13         static void Main(string[] args)
14         {
15             MyFirst helloWorld = delegate (int number) { Console.WriteLine(number); };
16             helloWorld(10);
17             Console.ReadKey();
18         }
19     }
20 }

 

 

 

2 show

技术分享

 

C#控制台基础 返回类型为void的 int 类型 参数委托与匿名函数

标签:

原文地址:http://www.cnblogs.com/jinlingzi/p/5978389.html

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