2010年8月9日
摘要: 一、进程是一个包含了某些资源的内存区域,进程中包含的一个或多个执行单元称线程。二、创建和销毁进程using System.Diagnostics;using System.Threading;class Program { staticvoid Main() { // 创建进程 Processprocess = Process.Start("notepad.exe", "hello.txt"); ... 阅读全文
posted @ 2010-08-09 10:27 TsingCai 阅读(719) 评论(0) 推荐(0) 编辑