摘要: 1.C# $ 内插字符串 Console.WriteLine($"The value of pi is {Math.PI}"); 替代string.format 2. switch 的新写法 colorBand 是枚举 public static RGBColor FromRainbow(Rainb 阅读全文
posted @ 2019-08-12 11:04 雪原日暮 阅读(230) 评论(0) 推荐(0) 编辑
 
该文被密码保护。 阅读全文
posted @ 2019-05-09 11:30 雪原日暮 阅读(36) 评论(0) 推荐(0) 编辑
  2024年10月30日
摘要: DataTable dt = new DataTable(); dt.Columns.Add("aa",typeof(string)); dt.Columns.Add("bb", typeof(string)); dt.Columns.Add("cc", typeof(string)); dt.Co 阅读全文
posted @ 2024-10-30 11:45 雪原日暮 阅读(1) 评论(0) 推荐(0) 编辑
  2024年10月6日
摘要: 1.sln目录执行 docker build -t webapi -f ./VOL.WebApi/Dockerfile . 阅读全文
posted @ 2024-10-06 01:32 雪原日暮 阅读(6) 评论(0) 推荐(0) 编辑
  2024年8月16日
摘要: https://blog.51cto.com/u_16099356/11051348 在Java应用程序中,我们需要使用相应的库文件来与FreeSwitch进行通信。这些库文件可以在FreeSwitch的官方网站上找到。然后,我们可以编写Java代码来实现与FreeSwitch的通信功能。 三、实际 阅读全文
posted @ 2024-08-16 09:17 雪原日暮 阅读(21) 评论(0) 推荐(0) 编辑
  2024年8月1日
摘要: https://blog.csdn.net/moyebaobei1/article/details/121988797?spm=1001.2014.3001.5506 inc文件 如果遇到:unexpected end of file found switch.inc 。inc文件最后一行需要有空行 阅读全文
posted @ 2024-08-01 20:13 雪原日暮 阅读(3) 评论(0) 推荐(0) 编辑
  2024年7月3日
摘要: https://blog.csdn.net/Java_lilin/article/details/103063930 windows安装 阅读全文
posted @ 2024-07-03 11:38 雪原日暮 阅读(11) 评论(0) 推荐(0) 编辑
  2024年6月5日
摘要: https://www.cnblogs.com/yangchongxing/p/15145397.html es查询 https://blog.csdn.net/2301_79099434/article/details/137663008 阅读全文
posted @ 2024-06-05 15:34 雪原日暮 阅读(3) 评论(0) 推荐(0) 编辑
  2024年4月24日
摘要: 官网文档地址: 1.实体生成:https://www.donet5.com/Doc/11 使用codefist可以将db表生成对应的实体文件,同时会自动生成代码 2.codefist 程序中可以走codefist。 可以设置禁止更新和删除来保护表结构,只在第一次的时候才会创建表 支持对比结构手动更改 阅读全文
posted @ 2024-04-24 18:17 雪原日暮 阅读(15) 评论(0) 推荐(0) 编辑
  2024年4月19日
摘要: string time = Convert.ToDateTime(date).ToString("yyyy-MM-dd HH:mm");//24小时 string time = Convert.ToDateTime(date).ToString("yyyy-MM-dd hh:mm");//12小时 阅读全文
posted @ 2024-04-19 17:04 雪原日暮 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 痛点:遇到一个问题,代码嵌套的es查询逻辑,太乱,太复杂。通过代码直观人工去转dsl发现根本不可能。后老看到调试模式能拿到dsl,方法如下 https://www.elastic.co/guide/en/elasticsearch/client/net-api/current/debug-mode. 阅读全文
posted @ 2024-04-19 10:25 雪原日暮 阅读(25) 评论(0) 推荐(0) 编辑
  2024年4月1日
摘要: 1.下载 DebugDiag 2.https://learn.microsoft.com/zh-cn/troubleshoot/developer/webapps/iis/health-diagnostic-performance/troubleshoot-high-cpu-in-iis-app-p 阅读全文
posted @ 2024-04-01 16:51 雪原日暮 阅读(72) 评论(0) 推荐(0) 编辑