Axin911

导航

2021年12月14日 #

QuartZ

摘要: 1.nuget:引用QuartZ 2. public async static Task Init() { /// 创建单元载体 StdSchedulerFactory factory = new StdSchedulerFactory(); IScheduler scheduler = await 阅读全文

posted @ 2021-12-14 17:34 Axin911 阅读(30) 评论(0) 推荐(0) 编辑

Lambda表达式配合委托使用

摘要: 1. Function<int,int,int> func = new Function<int,int,int>((int a,int b) => {return a+b;}); // 解释:就是定义了一个有返回值的委托对象 参数为 2个 int 返回值为 int (int a,int b) => 阅读全文

posted @ 2021-12-14 17:31 Axin911 阅读(67) 评论(0) 推荐(0) 编辑