摘要:
1.异步委托开启线程 public class Program { public static void Main(string[] args) { Action<int, int> a = add; a.BeginInvoke(3, 4, null, null); Console.WriteLin 阅读全文
摘要:
System.Threading.Thread rfaParamThread = new System.Threading.Thread(() => { //内容 }); rfaParamThread .start(); 阅读全文
摘要:
/// <summary> /// 获取文件MD5值 /// </summary> /// <param name="fileName">文件绝对路径</param> /// <returns>MD5值</returns> public static string GetMD5HashFromFil 阅读全文