1.了解委托 MyDelegate类代码如下: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MyDelegate { /// <summary> /// 委托可以定义在类外面 /// </summary> public delegate void OutNoReturnNoPa…
翻译自https://www.bfilipek.com/2019/02/lambdas-story-part1.html与https://www.bfilipek.com/2019/02/lambdas-story-part2.html. C++ lambda的演化 C++ Lambda Story The evolution of a powerful modern C++ feature: From C++03 to C++20 目录 前言 反馈 关于作者 译者的话 1. C++0…