摘要: Task.WaitAll()和Task.WhenAll()区别:1、WaitAll 同步方法,会阻塞当前线程 在 UI 线程使用可能导致死锁 抛出 AggregateException 适用于控制台或后台工作线程 2、WhenAll 异步方法,不会阻塞当前线程 返回 Task,可以使用 await 阅读全文
posted @ 2024-12-24 15:40 苏秦与真相 阅读(7) 评论(0) 推荐(0) 编辑
摘要: <CalendarConverters:CalendarItemConverter x:Key="CalendarItemConverter"/> <Style x:Key="CalendarItemStyle" TargetType="{x:Type CalendarItem}"> <Setter 阅读全文
posted @ 2024-11-22 15:26 苏秦与真相 阅读(5) 评论(0) 推荐(0) 编辑
摘要: C# 读取文件或文件夹的时候,路径有时候会变成带有波浪线(~)的形式,这是DOS 8.3文件名规则,感兴趣的小伙伴可以搜搜看。 遇到这种情况,想要转换成实际路径,需要调用Win32 API,代码如下: 其中GetShortPathName方法,是将路径全名转换为DOS 8.3规则,GetLongPa 阅读全文
posted @ 2024-04-10 16:57 苏秦与真相 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 一个在线的开源项目示例链接 阅读全文
posted @ 2024-03-08 18:35 苏秦与真相 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 近期用到PDF文档打印,翻阅资料,找到一个参考网站,收藏下 文中提到了几个开源插件,其中Spire,这个有收费版和免费版,之前我们用过免费版,后来发现免费版只能支持10页以内的PDF文档,超过10页就报错了,在这里说明一下,方便大家避坑。其实,Spire主要功能是PDF编辑,打印是附加的,如果需要编 阅读全文
posted @ 2024-03-01 11:40 苏秦与真相 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 以管理员运行cmd,执行下面的命令,添加排除项 powershell -inputformat none -outputformat none -NonInteractive -Command Add- MpPreference -ExclusionPath "程序或者文件夹全路径" 参考链接 阅读全文
posted @ 2024-02-01 17:50 苏秦与真相 阅读(1022) 评论(0) 推荐(0) 编辑
摘要: 熊猫无损音乐,一个可以免费下载音乐的平台,值得收藏 阅读全文
posted @ 2024-02-01 11:31 苏秦与真相 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 错误信息: 2023-12-12T09:32:31.383149Z 0 [ERROR] InnoDB: Ignoring the redo log due to missing MLOG_CHECKPOINT between the checkpoint 5777611209 and the end 阅读全文
posted @ 2024-01-10 17:45 苏秦与真相 阅读(295) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// /// </summary> /// <param name="path"></param> /// <returns></returns> public static double GetDirectorySize(string path) { double r 阅读全文
posted @ 2024-01-09 14:12 苏秦与真相 阅读(301) 评论(0) 推荐(0) 编辑
摘要: 在mysql的my.ini中,如果不做配置,mysql自动以hostname.err命名,用户电脑名称若有图标或者一些特殊符号,会导致日志文件无法创建,从而引发mysql服务无法启动。因此建议主动配置,参考如下:log_error="../data/LogName.log",LogName建议使用英 阅读全文
posted @ 2023-12-05 16:25 苏秦与真相 阅读(13) 评论(0) 推荐(0) 编辑