摘要:
### 整理代码块 代码块整理后存储,供后期使用 ```C# using System; using System.IO; using System.IO.Compression; using System.Text; public class GzipHelper { /// /// GZIP解压 阅读全文
摘要:
### 整理代码块 代码块整理后存储,供后期使用 ```C# /// /// 复制文件及其内部文件 /// /// 源文件 /// 目标文件 /// 同名是否覆盖 public static void CopyFile(string sources, string dest, bool cover) 阅读全文
摘要:
### 整理代码块 代码块整理后存储,供后期使用 ```C# /// /// 获取文件夹大小 /// /// /// static long GetDirectorySize(string dirPath) { if (!System.IO.Directory.Exists(dirPath)) re 阅读全文
摘要:
### 整理代码块 代码块整理后存储,供后期使用 ```C# // winForm,根据控件的名字获取控件 Control control = Controls.Find("button1", true)[0]; // 获取属性 object o = control.GetType().GetPro 阅读全文
摘要:
### 整理代码块 代码块整理后存储,供后期使用 **JS版本** ```js function reverse(x) { let res = 0; while (x !== 0) { if (res > Math.floor(Number.MAX_SAFE_INTEGER / 10) || res 阅读全文