本文共 795 字,大约阅读时间需要 2 分钟。
using System;namespace ConsoleApp5{ class Program { static void Main(string[] args) { Funcfunc = new Func ((int a, int b) => { return a + b; }); int result = func(100, 200); // 300 Console.WriteLine(result); func = new Func ((int x, int y) => { return x * y; }); result = func(2, 3); // 6 Console.WriteLine(result); // 简化1 func = new Func ((x, y) => { return x * y; }); // 简化2 func = (x, y) => { return x * y; }; // 简化3 func = (x, y) => (x * y); // 6 Console.WriteLine(func(2, 3)); } }}
转载地址:http://vgce.baihongyu.com/