摘要: 进程 我们可以把计算机中每一个运行的应用程序都当做是一个进程。 而一个进程又是由多个线程组成的。 Process GetProcesses():获得当前程序中所有正在运行的进程 Process[] pros = Process.GetProcesses(); foreach (var item in 阅读全文
posted @ 2020-05-27 23:18 兔子不会吃草 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 效果 实现 代码 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; usin 阅读全文
posted @ 2020-05-27 21:58 兔子不会吃草 阅读(1511) 评论(0) 推荐(0) 编辑
摘要: 效果 #实现 代码 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; usi 阅读全文
posted @ 2020-05-27 21:31 兔子不会吃草 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 效果 实现 代码 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.IO; using 阅读全文
posted @ 2020-05-27 21:07 兔子不会吃草 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 效果 实现 代码 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.IO; using 阅读全文
posted @ 2020-05-27 19:53 兔子不会吃草 阅读(1059) 评论(0) 推荐(0) 编辑
摘要: 效果 实现 代码 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WindowsFormsApp 阅读全文
posted @ 2020-05-27 18:38 兔子不会吃草 阅读(316) 评论(0) 推荐(0) 编辑
摘要: Directory 用于操作文件夹 方法 CreateDirectory():创建文件夹 Directory.CreateDirectory(@"D:\a"); Delete():删除文件夹 Directory.Delete(@"D:\a",true); Move():剪切文件夹 Directory 阅读全文
posted @ 2020-05-27 14:32 兔子不会吃草 阅读(175) 评论(0) 推荐(0) 编辑