上一页 1 ··· 64 65 66 67 68 69 70 71 72 ··· 81 下一页
摘要: 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 阅读(341) 评论(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 阅读(289) 评论(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. Install-package naudio -v 1.9.0 2. using NAudio.Wave; 3. 阅读全文
posted @ 2019-11-19 18:43 FredGrit 阅读(214) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; namespace ConsoleApp386 { class Program { static 阅读全文
posted @ 2019-11-19 11:29 FredGrit 阅读(267) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { WebRequestDemoAsync(); Console.ReadLine(); } static async void WebRequestDemoAsync() { string url = "https://docs.mi 阅读全文
posted @ 2019-11-12 17:18 FredGrit 阅读(258) 评论(0) 推荐(0) 编辑
上一页 1 ··· 64 65 66 67 68 69 70 71 72 ··· 81 下一页