12 2023 档案

c# 忽略代码段警告
摘要:#pragma warning disable CS4014 { Task.Run(() => { if (!LocalDataHelper.ReadPageManager.GetReadList().Any(x => x == bookPageModel.Id)) LocalDataHelper. 阅读全文

posted @ 2023-12-29 17:32 空明流光 阅读(73) 评论(0) 推荐(0) 编辑

c#实现对大量文章标签进行聚合分组
摘要:比如已知是 10001个章节,第个页面最多显示100个标签,则最终会有3层。以下代码是自己写出,由gpt将递归优化为while循环。 void Main() { int totalChapterCount = 10001; int maxChapterCount = 100; var chapter 阅读全文

posted @ 2023-12-26 22:10 空明流光 阅读(25) 评论(0) 推荐(0) 编辑

导航