摘要: 1.异步委托开启线程 public class Program { public static void Main(string[] args) { Action<int, int> a = add; a.BeginInvoke(3, 4, null, null); Console.WriteLin 阅读全文
posted @ 2020-09-17 17:31 就一个 阅读(10702) 评论(0) 推荐(0) 编辑
摘要: System.Threading.Thread rfaParamThread = new System.Threading.Thread(() => { //内容 }); rfaParamThread .start(); 阅读全文
posted @ 2020-09-17 17:30 就一个 阅读(487) 评论(1) 推荐(1) 编辑
摘要: /// <summary> /// 获取文件MD5值 /// </summary> /// <param name="fileName">文件绝对路径</param> /// <returns>MD5值</returns> public static string GetMD5HashFromFil 阅读全文
posted @ 2020-09-17 14:06 就一个 阅读(1430) 评论(0) 推荐(0) 编辑