上一页 1 ··· 58 59 60 61 62 63 64 65 66 ··· 76 下一页
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace ConsoleApp393 { class Program { ... 阅读全文
posted @ 2019-11-24 15:51 FredGrit 阅读(259) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Diagnostics; using System.Net; using System.IO; using System.Windows.Fo 阅读全文
posted @ 2019-11-23 21:26 FredGrit 阅读(222) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Diagnostics; namespace ConsoleApp392 { class Program { static void Main 阅读全文
posted @ 2019-11-23 20:19 FredGrit 阅读(214) 评论(0) 推荐(0) 编辑
摘要: I had validated in .net 4.8 NewtonSoft.Json's speed rank 1st,System.Text.Json.JsonSerializer.Serialize 2nd,and BinaryFormatter 3rd. 阅读全文
posted @ 2019-11-23 19:01 FredGrit 阅读(340) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Collections;using System.IO;using System.Runtime.Serialization.Formatters.Binary;using Syst 阅读全文
posted @ 2019-11-22 12:03 FredGrit 阅读(396) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { string dir = @"C:\"; string[] dirs=Directory.GetDirectories(dir); long totalSize = 0; if(dirs!=null && di... 阅读全文
posted @ 2019-11-21 20:16 FredGrit 阅读(288) 评论(0) 推荐(0) 编辑
摘要: static void RenameFiles() { string sourceDir = @"D:\ll"; string[] allFiles = Directory.GetFiles(sourceDir, "*.mp3", SearchOption.AllDirectories); if(allFi... 阅读全文
posted @ 2019-11-21 13:43 FredGrit 阅读(206) 评论(0) 推荐(0) 编辑
摘要: static void CopyFiles() { string sourceDir = @"D:\C\ll"; string destDir = @"D:\LL"; if (!Directory.Exists(destDir)) { Directo... 阅读全文
posted @ 2019-11-21 12:12 FredGrit 阅读(289) 评论(0) 推荐(0) 编辑
摘要: class Program { static void Main(string[] args) { Thermostat thermostat = new Thermostat(); Heater heater = new Heater(60); Cooler cooler = ne... 阅读全文
posted @ 2019-11-20 20:02 FredGrit 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 1.Install-Package StackExchange -v 2.0.601 2.using StackExchange.Redis; 3. 阅读全文
posted @ 2019-11-19 21:32 FredGrit 阅读(209) 评论(0) 推荐(0) 编辑
上一页 1 ··· 58 59 60 61 62 63 64 65 66 ··· 76 下一页