C# 查看系统进程

//使用前需要引用 using System.Diagnostics;

var processList = Process.GetProcesses().ToList();

原文地址:https://www.cnblogs.com/zsqdh/p/9023784.html