摘要: ### 整理代码块 代码块整理后存储,供后期使用 ```C# using System; using System.IO; using System.IO.Compression; using System.Text; public class GzipHelper { /// /// GZIP解压 阅读全文
posted @ 2023-08-08 22:59 叫夏洛啊 阅读(11) 评论(0) 推荐(0) 编辑
摘要: ### 整理代码块 代码块整理后存储,供后期使用 ```C# /// /// 复制文件及其内部文件 /// /// 源文件 /// 目标文件 /// 同名是否覆盖 public static void CopyFile(string sources, string dest, bool cover) 阅读全文
posted @ 2023-08-08 22:57 叫夏洛啊 阅读(15) 评论(0) 推荐(0) 编辑
摘要: ### 整理代码块 代码块整理后存储,供后期使用 ```C# /// /// 获取文件夹大小 /// /// /// static long GetDirectorySize(string dirPath) { if (!System.IO.Directory.Exists(dirPath)) re 阅读全文
posted @ 2023-08-08 22:53 叫夏洛啊 阅读(15) 评论(0) 推荐(0) 编辑
摘要: ### 整理代码块 代码块整理后存储,供后期使用 ```C# // winForm,根据控件的名字获取控件 Control control = Controls.Find("button1", true)[0]; // 获取属性 object o = control.GetType().GetPro 阅读全文
posted @ 2023-08-08 22:49 叫夏洛啊 阅读(20) 评论(0) 推荐(0) 编辑
摘要: ### 整理代码块 代码块整理后存储,供后期使用 **JS版本** ```js function reverse(x) { let res = 0; while (x !== 0) { if (res > Math.floor(Number.MAX_SAFE_INTEGER / 10) || res 阅读全文
posted @ 2023-08-08 22:41 叫夏洛啊 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 今天在浏览器中搜索时发现,ChartGPT 插件出现异常,无法返回预期值,出现报错信息。如图示: ![](https://img2023.cnblogs.com/blog/866068/202306/866068-20230605165241963-1374772849.png) 然后到官网[查看使 阅读全文
posted @ 2023-06-05 17:00 叫夏洛啊 阅读(435) 评论(0) 推荐(0) 编辑
摘要: 2024-03-12 https://static.zhihu.com/heifetz/3433.*.css 2023-03-06 https://static.zhihu.com/heifetz/7626.*.css 2023-01-18 https://static.zhihu.com/heif 阅读全文
posted @ 2022-12-23 15:23 叫夏洛啊 阅读(902) 评论(0) 推荐(0) 编辑
摘要: 在对 xml 文件内数据做等比例缩放时,之前排好的属性顺序在写入时会被 ElementTree 按照字母顺序排序,造成预期外的修改,所以修改 ElementTree.py 的源码进行干预修改。 将代码修改为 修改 ElementTree 源码的方法 _serialize_xml 中的函数内包含了节点 阅读全文
posted @ 2022-09-19 14:42 叫夏洛啊 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 开端:使用反射获取类的所有公共属性,默认情况不会获取到到静态成员。 代码: internal class Program { static void Main(string[] args) { Point p1 = new Point(10, 20); p1.ForeEachProps(); Con 阅读全文
posted @ 2022-09-15 11:06 叫夏洛啊 阅读(528) 评论(0) 推荐(0) 编辑
摘要: ### 创建新分支修改场景 第一步先执行: git checkout newbranch 第二步执行: git rebase master // 执行代码操作 第三步: git checkout master 第四步: git merge newbranch ### 已经修改过场景: 执行代码操作以 阅读全文
posted @ 2021-05-06 17:56 叫夏洛啊 阅读(64) 评论(0) 推荐(0) 编辑