摘要: git stash list 查看暂存记录 应用暂存记录 git stash apply stash@{1} 阅读全文
posted @ 2021-09-16 21:30 不知勿言 阅读(14) 评论(0) 推荐(0) 编辑
摘要: public async Task<Stream> GetExportOrderBoxStream(ExportOrderBoxRequest request) { H_Order order = await OrderService.GetOrder(request.OrderId); var c 阅读全文
posted @ 2021-09-07 12:34 不知勿言 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 文件后缀MIME TYPE .doc application/msword .dot application/msword .docx application/vnd.openxmlformats-officedocument.wordprocessingml.document .dotx appl 阅读全文
posted @ 2021-08-25 10:15 不知勿言 阅读(71) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 获取枚举文本内容 /// </summary> /// <param name="enum"></param> /// <returns></returns> public static string GetEnumDescription(this Enum @e 阅读全文
posted @ 2021-08-09 11:30 不知勿言 阅读(72) 评论(0) 推荐(0) 编辑
摘要: The ReadAsync method cannot be called when another read operation is pending 引起这个问题的可能是因为多个线程访问了一个对象的原因 阅读全文
posted @ 2021-07-15 17:56 不知勿言 阅读(744) 评论(0) 推荐(0) 编辑
摘要: show variables like '%time_zone%' 这是我连接服务器的mysql结果(OS:centos) 这是我本地部署的mysql(OS:win10) utc标准时间:utc_timestamp() 北京时间,相差8个时区+8:CONVERT_TZ(utc_timestamp() 阅读全文
posted @ 2021-06-10 17:26 不知勿言 阅读(105) 评论(0) 推荐(0) 编辑
摘要: Excel名称管理 张三李四王五2xxs:Excel名称 =INDIRECT(CONCATENATE("张三李四王二麻子",MATCH(C25,张三李四王五2xxs,0))) =INDEX(Sheet2!B2:K29,MATCH(B2,Sheet2!A2:A29,0),MATCH(A2,Sheet2 阅读全文
posted @ 2021-06-08 16:50 不知勿言 阅读(129) 评论(0) 推荐(0) 编辑
摘要: Unicode中文和特殊字符的编码范围 编程中有时候需要用到匹配中文的正则,一般用 [ \u4e00-\u9fa5]+ 即可搞定。不过这正则对一般的火星文鸟语就不太适用了,甚至全角的标点符号都不包含在内。例如游戏里面的玩家名,普通青年一般都是汉字,文艺青年会加几个特殊字符,2B青年火星文鸟语都会用上 阅读全文
posted @ 2021-05-27 11:48 不知勿言 阅读(1000) 评论(0) 推荐(0) 编辑
摘要: public async Task<Tuple<List<H_Port>, int>> GetList(CommonPortSearchRequest request) { StringBuilder sbSql = new StringBuilder(); StringBuilder sbCoun 阅读全文
posted @ 2021-05-27 08:32 不知勿言 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 汉字 Unicode 编码范围 字符集 字数 Unicode 编码 基本汉字 20902字 4E00-9FA5 基本汉字补充 74字 9FA6-9FEF 扩展A 6582字 3400-4DB5 扩展B 42711字 20000-2A6D6 扩展C 4149字 2A700-2B734 扩展D 222字 阅读全文
posted @ 2021-05-24 16:22 不知勿言 阅读(284) 评论(0) 推荐(0) 编辑