c# lambda表达式关于 闭包 的知识点讲解
话不多说 先上代码 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;namespace _1.lambda表达式 {class Program{static void Main(string[] args){Text t new Text();t.DoSomething();}}class Text{p…
2025-01-26