摘要: #region Action与Func内置委托 // 无返回值的委托 //1.无参数,无返回值的委托 Action action = () => { Console.WriteLine("无参数,没有返回值!"); }; action(); //2.带参数,无返回值的委托 Action<int, i 阅读全文
posted @ 2021-12-04 15:25 本粥州舟周大人 阅读(129) 评论(0) 推荐(0)