Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
通过带有 C# 的 .NET,我知道在我的操作系统上运行的所有进程。但是如何知道他们是否正在使用任何网络接口?我也有我的机器具有的网络接口列表,由 C# 编写。 任何的想法?
您可以使用此代码片段:
www.timvw.b
这就是您需要的方法:
ManagedIpHelper.GetExtendedTcpTable(true);
在那里您将获得所有 PID,您可以将其解析为 ProcessNames。