C#控制台基础 返回类型为void的 int 类型参数的委托与拉姆塔表达式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#控制台基础 返回类型为void的 int 类型参数的委托与拉姆塔表达式相关的知识,希望对你有一定的参考价值。

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 test1 = x => Console.WriteLine(x.ToString());
16             test1(1);
17 
18 
19             Console.ReadKey();
20         }
21     }
22 }

 

 

 

2 show

技术分享

 

以上是关于C#控制台基础 返回类型为void的 int 类型参数的委托与拉姆塔表达式的主要内容,如果未能解决你的问题,请参考以下文章

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

C#基础知识

如何理解 C# 中的 System.Void 类型?

C# WebApi之接口返回类型详解

C#语言特性备忘

有没有办法在 int 类型方法中返回 void