如何通过使用CSharp按下执行底部来获取在我的电脑上运行的游戏的ip +端口?
Win32_Process WHERE Caption = 'mygame.exe'
我得到了这个例子
有人可以告诉我应该用什么代码来实现它? 我知道在命令行中运行的命令行是
wmic process where name="my game" get commandline
但这会给我很多信息我只想要结果[0] = ip,结果[1] =端口
if (result.Count >= 1)
{
Console.WriteLine("IP: " + result[0]);
Console.WriteLine("Port: " + result[1]);
}