C# Http文件下载公共类(支持断点续传)
摘要:1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.IO; 6 using System.Net; 7 8 namespace X...
阅读全文
JsonHelper.class
摘要:1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Web; 5 using System.Runtime.Serialization.Json; 6 using Syste...
阅读全文
C# CMD吊起执行 传参式执行类
摘要:1 class command 2 { 3 public static string startcmd(string command) 4 { 5 string output = ""; 6 try 7 ...
阅读全文
C# Table转换List 或List转换Table
摘要:1 public static class TableListHelper 2 { 3 4 /// 5 /// 转化一个DataTable 6 /// 7 /// 8 /...
阅读全文