This commit is contained in:
sin365 2024-06-18 16:47:58 +08:00
parent 8b0a8012a3
commit 72126fb782

View File

@ -47,7 +47,8 @@ namespace AxibugRedirector
if (type == 1)
{
Console.Write("请输入目标进程PID");
if (int.TryParse(readStr, out int pid))
string readpid = Console.ReadLine();
if (int.TryParse(readpid, out int pid))
{
if (DoInjectByPid(pid))
{