📅  最后修改于: 2022-03-11 14:48:56.795000             🧑  作者: Mango
代码示例1
Stack stack = new Stack();
stack.Push(()=>{Console.Write("executed");});
while (stack.Count>0){
stack.Pop().Invoke();
}