上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 29 下一页
摘要: 项目立项分析、大致需求分析、技术选型、基础框架搭建、具体需求分析和梳理、领域建模分析、模型建立、功能编写 阅读全文
posted @ 2019-12-26 15:01 向萧 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 错误信息 严重性 代码 说明 项目 文件 行 禁止显示状态错误 MSB3073 命令“dotnet "C:\Users\Administrator\.nuget\packages\microsoft.extensions.apidescription.server\0.3.0-preview7.19 阅读全文
posted @ 2019-12-26 11:30 向萧 阅读(1422) 评论(1) 推荐(1) 编辑
摘要: 1、initiallyOwned表示创建mutex的线程是否拥有该互斥体。true表示创建线程拥有互斥锁,只有在创建线程中调用ReleaseMutex释放后,其他等待线程才能参与抢夺互斥体的活动。false表示互斥锁体于与空闲状态,其他等待互斥锁的线程立即参与到抢夺互斥锁的活动中去。 2、在上面程序 阅读全文
posted @ 2019-12-24 15:03 向萧 阅读(1672) 评论(0) 推荐(0) 编辑
摘要: Saas软件即使版本更新多次,也要兼顾老客户,兼容旧功能。 对于小程序调用的接口,无法保证客户会更新小程序,因此需要兼容使用旧版本小程序的客户,更不能删除接口。 阅读全文
posted @ 2019-12-20 16:08 向萧 阅读(606) 评论(0) 推荐(0) 编辑
摘要: 实践 阅读全文
posted @ 2019-12-18 14:16 向萧 阅读(2290) 评论(0) 推荐(0) 编辑
摘要: error: RPC failed; curl 18 transfer closed with outstanding read data remainingfatal: the remote end hung up unexpectedlyfatal: early EOFfatal: index- 阅读全文
posted @ 2019-12-16 09:48 向萧 阅读(1980) 评论(0) 推荐(0) 编辑
摘要: var testDec = 0.1m; var str= Math.Round(testDec, 2, MidpointRounding.AwayFromZero).ToString("n2"); 阅读全文
posted @ 2019-12-09 16:12 向萧 阅读(523) 评论(0) 推荐(0) 编辑
摘要: 目标进程已退出,但未引发 CoreCLR 启动事件。请确保将目标进程配置为使用 .NET Core。如果目标进程未运行 .NET Core,则发生这种情况并不意外 解决:更新SDK版本 阅读全文
posted @ 2019-11-13 15:44 向萧 阅读(5919) 评论(1) 推荐(0) 编辑
摘要: public static string ToMD5Hash(this string str) { if (string.IsNullOrEmpty(str)) return null; return Encoding.ASCII.GetBytes(str).ToMD5Hash(); } public static string ToMD5Hash(this byte[] bytes) { if 阅读全文
posted @ 2019-11-04 14:26 向萧 阅读(120) 评论(0) 推荐(0) 编辑
摘要: If you are exposing your class through a library that others will use, you generally want to expose it via interfaces rather than concrete implementat 阅读全文
posted @ 2019-10-28 20:27 向萧 阅读(98) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 29 下一页