Home
Unity
12 匿名函数
姜睿
September 07, 2022
1 min
Table Of Contents
01
语法
02
注意事项
03
Lambda 表达式
语法
方法只使用 1 次,没有必要建立独立的具名方法。
匿名方法:实例化委托时
内联声明
的方法。
Before.cs
After.cs
1
2
using
static
System.Console;
3
4
internal
class
Program
5
{
6