摘要: using Microsoft.Win32; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Diagnostics; using System.Drawing; using System.IO; using System.Ru... 阅读全文
posted @ 2019-06-25 18:00 enych 阅读(7588) 评论(1) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-06-25 17:58 enych 阅读(5813) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Extr... 阅读全文
posted @ 2019-06-25 17:34 enych 阅读(4608) 评论(0) 推荐(0) 编辑
摘要: C# 支持多线程并行执行程序 1.一个程序由一个单线程开始,该单线程由CLR和操作系统创建而成,并具有多线程创建额外线程的功能. 2.创建线程的方法 2.1 通过Thread类来创建线程. ThreadStart委托创建线程 ThreadStart ts=new ThreadStart(Run);//创建指定线程从哪里(哪个方法)开始的委托 Thread th=new Thread(t... 阅读全文
posted @ 2019-06-25 17:13 enych 阅读(568) 评论(0) 推荐(0) 编辑
摘要: C#创建目录 var strpatj = HttpRuntime.AppDomainAppPath; if (!Directory.Exists(strpatj+"\\temp")) Directory.CreateDirectory(strpatj + "\\temp"); C#在目录下创建文件 StreamReader sr = new StreamReader(filestrem, Sys... 阅读全文
posted @ 2019-06-25 17:10 enych 阅读(11409) 评论(0) 推荐(1) 编辑