360进程管理器原理
摘要:看了360进程管理器,可以查看正在运行程序所依赖的动态库文件。但是我想把依赖的文件都提取出来,就写了下面的小程序。 private void button1_Click(object sender, EventArgs e) { string fileName = ""; string filePath = ""; int num = 0; foreach (System.Diagnostics.Process p in System.Diagnostics.Process.GetProcessesByName(textBox1.Text)) { for
阅读全文
posted @ 2011-07-23 16:18