Files
Csharp/C#进阶/Lesson14_匿名函数练习/Program.cs
T

20 lines
437 B
C#
Raw Normal View History

2025-10-20 09:23:46 +08:00
namespace Lesson14_匿名函数练习
{
class Program
{
static void Main(string[] args)
{
Func<int, int> func = Dosomething(3);
int result = func(2);
Console.WriteLine(result);
}
public static Func<int, int> Dosomething(int value)
{
return delegate (int x)
{
return value * x;
};
}
}
}